Skip to content

Commit b44bf04

Browse files
committed
Composer config
1 parent 0827e10 commit b44bf04

File tree

2 files changed

+4653
-0
lines changed

2 files changed

+4653
-0
lines changed

composer.json

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "api-clients/twitter",
3+
"license": "MIT",
4+
"minimum-stability": "dev",
5+
"prefer-stable": true,
6+
"authors": [
7+
{
8+
"name": "Cees-Jan Kiewiet",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"php": "^7.0",
14+
"api-clients/foundation": "dev-master",
15+
"jacobkiers/oauth": "^1.0",
16+
"react/http-client": "^0.4.12",
17+
"rx/operator-extras": "^0.3.0"
18+
},
19+
"require-dev": {
20+
"api-clients/resource-generator": "dev-master",
21+
"api-clients/resource-test-utilities": "dev-master",
22+
"api-clients/test-utilities": "dev-master",
23+
"phake/phake": "^2.3",
24+
"phpunit/phpunit": "^5.2.3",
25+
"squizlabs/php_codesniffer": "^2.6",
26+
"vectorface/dunit": "~2.0"
27+
},
28+
"autoload": {
29+
"psr-4": {
30+
"ApiClients\\Twitter\\": "src/"
31+
}
32+
},
33+
"autoload-dev": {
34+
"psr-4": {
35+
"ApiClients\\Tests\\Twitter\\": "tests/"
36+
}
37+
},
38+
"config": {
39+
"sort-packages": true
40+
}
41+
}

0 commit comments

Comments
 (0)