Skip to content

Commit ea84ec1

Browse files
committed
Add Composer
1 parent 102eef7 commit ea84ec1

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

composer.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"name": "php-http/react-adapter",
3+
"description": "React adapter for PHP-HTTP",
4+
"license": "MIT",
5+
"keywords": ["http", "react", "httplug"],
6+
"homepage": "http://php-http.org",
7+
"authors": [
8+
{
9+
"name": "Stéphane HULARD",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": ">=5.4",
15+
"php-http/httplug": "^1.0",
16+
"php-http/message-factory": "^0.3",
17+
"react/http-client": "^0.4"
18+
},
19+
"require-dev": {
20+
"php-http/adapter-integration-tests": "dev-master"
21+
},
22+
"autoload": {
23+
"psr-4": {
24+
"Http\\Adapter\\": "src/"
25+
}
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"Http\\Adapter\\Tests\\": "tests/"
30+
}
31+
},
32+
"extra": {
33+
"branch-alias": {
34+
"dev-master": "0.1-dev"
35+
}
36+
},
37+
"provide": {
38+
"php-http/client-implementation": "1.0",
39+
"php-http/async-client-implementation": "1.0"
40+
},
41+
"scripts": {
42+
"test": "vendor/bin/phpunit",
43+
"test-ci": "vendor/bin/phpunit --coverage-clover build/coverage.xml"
44+
},
45+
"prefer-stable": true,
46+
"minimum-stability": "dev"
47+
}

0 commit comments

Comments
 (0)