-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.18 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
42
43
44
45
46
{
"name": "iq2i/prestashop-webservice",
"type": "library",
"description": "A PHP library that let you interact with PrestaShop API",
"keywords": ["php", "library", "prestashop", "webservice", "api"],
"homepage": "https://github.com/IQ2i/prestashop-webservice",
"license": "MIT",
"authors": [
{
"name": "Loïc Sapone",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.2",
"ext-curl": "*",
"ext-simplexml": "*",
"psr/log": "^1|^2|^3",
"symfony/http-client": "^5.4|^6.0",
"symfony/http-client-contracts": "^3",
"symfony/serializer": "^5.4|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^8|^9"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"IQ2i\\PrestashopWebservice\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IQ2i\\PrestashopWebservice\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.0-dev"
}
}
}