Skip to content

Commit 5fbb3da

Browse files
committed
Added autoload files
1 parent 1d0bf27 commit 5fbb3da

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ before_install:
2929

3030
install:
3131
- composer require ${PACKAGE} --no-update
32-
- travis_retry composer update --prefer-dist --no-interaction
32+
- travis_retry composer update --prefer-source --no-interaction
3333

3434
before_script:
3535
- vendor/bin/http_test_server > /dev/null 2>&1 &

composer.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,24 @@
2020
"php-http/httplug": "^1.0",
2121
"php-http/message": "^1.0",
2222
"guzzlehttp/psr7": "^1.0",
23-
"th3n3rd/cartesian-product": "^0.3"
23+
"th3n3rd/cartesian-product": "^0.3",
24+
"php-http/guzzle6-adapter": "^1.1"
2425
},
2526
"autoload": {
2627
"psr-4": {
2728
"Http\\Client\\Tests\\": "src/"
2829
}
2930
},
31+
"autoload-dev": {
32+
"psr-4": {
33+
"Http\\Adapter\\Curl\\Tests\\": "vendor/php-http/curl-client/tests/",
34+
"Http\\Adapter\\Socket\\Tests\\": "vendor/php-http/socket-client/tests/",
35+
"Http\\Adapter\\Guzzle5\\Tests\\": "vendor/php-http/guzzle5-adapter/tests/",
36+
"Http\\Adapter\\Guzzle6\\Tests\\": "vendor/php-http/guzzle6-adapter/tests/",
37+
"Http\\Adapter\\Buzz\\Tests\\": "vendor/php-http/buzz-adapter/tests/",
38+
"Http\\Adapter\\React\\Tests\\": "vendor/php-http/react-adapter/tests/"
39+
}
40+
},
3041
"bin": [
3142
"bin/http_test_server"
3243
],

0 commit comments

Comments
 (0)