forked from PrestaShopCorp/module-lib-guzzle-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.15 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "prestashop/module-lib-guzzle-adapter",
"description": "Plug modules to the Guzzle client available on a running shop",
"license": "AFL-3.0",
"autoload": {
"psr-4": {
"Prestashop\\ModuleLibGuzzleAdapter\\": "src/"
}
},
"authors": [
{
"name": "PrestaShop SA",
"email": "[email protected]"
}
],
"provide": {
"php-http/client-implementation": "1.0",
"psr/http-client-implementation": "1.0"
},
"require": {
"php": "^7.2.5 || ^8.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"php-http/message": "^1.13",
"php-http/httplug": "^2.3",
"guzzlehttp/psr7": "^2.3.0"
},
"require-dev": {
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^9.5|^8.5",
"prestashop/php-dev-tools": "^4.2"
},
"scripts": {
"phpstan-g5": "vendor/bin/phpstan analyze -c tests/Guzzle5/phpstan.neon",
"phpstan-g7": "vendor/bin/phpstan analyze -c tests/Guzzle7/phpstan.neon",
"phpstan": [
"@phpstan-g5",
"@phpstan-g7"
]
}
}