Skip to content

Commit 4b2a840

Browse files
authored
Merge pull request #2 from codenix-sv/bugs/fix-composer-dependencies
Fix: Guzzle didn't work in prod because required only in dev
2 parents 02071cc + 1310de3 commit 4b2a840

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@
1818
],
1919
"require": {
2020
"php": "^7.2",
21-
"ext-json": "*"
22-
21+
"ext-json": "*",
22+
"guzzlehttp/guzzle": "~6.0"
2323
},
2424
"require-dev": {
25-
"phpunit/phpunit": "^8.0",
26-
"guzzlehttp/guzzle": "~6.0"
25+
"phpunit/phpunit": "^8.0"
2726
},
2827
"autoload": {
2928
"psr-4": { "Codenixsv\\CoinGeckoApi\\": "src/" }

0 commit comments

Comments
 (0)