Skip to content

Commit cfafcf7

Browse files
committed
Resolve autoloading issues, update deps, move symfony process to suggests, format with 2 spaces instead of 4
1 parent dfb9943 commit cfafcf7

File tree

1 file changed

+35
-19
lines changed

1 file changed

+35
-19
lines changed

composer.json

+35-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,38 @@
11
{
2-
"name": "cursedcoder/eprocess",
3-
"type": "library",
4-
"description": "Multi-threading framework?",
5-
"keywords": ["pthreads", "child process", "ICP", "non-blocking", "async", "react"],
6-
"homepage": "https://github.com/cursedcoder/eprocess",
7-
"require": {
8-
"php": ">=5.5",
9-
"react/react": "0.4.1@dev",
10-
"jms/serializer": "^1.1",
11-
"doctrine/collections": "1.2.*@dev",
12-
"symfony/process": "2.6.*@dev",
13-
"concerto/comms": "~0.8"
14-
},
15-
"license": "MIT",
16-
"require-dev": {
17-
"divi/pthreads-stub": "dev-master"
18-
},
19-
"autoload": {
20-
"psr-0": { "EProcess": "", "Examples": "" }
2+
"name": "cursedcoder/eprocess",
3+
"type": "library",
4+
"description": "Multi-threading framework?",
5+
"keywords": [
6+
"pthreads",
7+
"child process",
8+
"IPC",
9+
"non-blocking",
10+
"async",
11+
"react"
12+
],
13+
"homepage": "https://github.com/cursedcoder/eprocess",
14+
"require": {
15+
"php": ">=5.5",
16+
"react/react": "~0.4@dev",
17+
"jms/serializer": "^1.1",
18+
"doctrine/collections": "~1.3",
19+
"concerto/comms": "~0.8"
20+
},
21+
"suggests": {
22+
"symfony/process": "To use symfony process adapter"
23+
},
24+
"license": "MIT",
25+
"require-dev": {
26+
"divi/pthreads-stub": "dev-master"
27+
},
28+
"autoload": {
29+
"psr-4": {
30+
"EProcess": ""
2131
}
32+
},
33+
"autoload-dev": {
34+
"psr-4": {
35+
"Examples\\": "examples/"
36+
}
37+
}
2238
}

0 commit comments

Comments
 (0)