Skip to content

Commit 679a606

Browse files
committed
發布 1.0.0 版本。
1 parent dc049f2 commit 679a606

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

composer.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "pardnchiu/async",
3+
"description": "An asynchronous task library built on ReactPHP, enabling dependency-based sorting with topological ordering for precise and efficient workflow management.",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "邱敬幃 Pardn Chiu",
9+
"email": "dev@pardn.io"
10+
}
11+
],
12+
"minimum-stability": "stable",
13+
"require": {
14+
"php": ">=8.0",
15+
"react/promise": "^2.8 || ^3.0",
16+
"react/event-loop": "^1.1 || ^2.0"
17+
},
18+
"require-dev": {
19+
},
20+
"autoload": {
21+
"psr-4": {
22+
"PD\\": "src/"
23+
}
24+
},
25+
"autoload-dev": {
26+
"psr-4": {
27+
}
28+
},
29+
"scripts": {
30+
},
31+
"extra": {
32+
"branch-alias": {
33+
}
34+
},
35+
"config": {
36+
"sort-packages": true
37+
}
38+
}

PDPHP/Async.php renamed to src/Async.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PDPHP;
3+
namespace PD;
44

55
use React\Promise;
66
use React\EventLoop\Loop;

0 commit comments

Comments
 (0)