forked from kusflo/PrestaShopWebService
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 778 Bytes
/
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
{
"name": "kusflo/PshopWs",
"type": "library",
"minimum-stability": "dev",
"description": "PHP wrapper for PrestaShop Webservices 1.7.x and 1.6.x.",
"keywords": [
"php",
"prestashop",
"webservices",
"arrays",
"store",
"api",
"erp",
"date",
"filter"
],
"homepage": "https://github.com/kusflo/PrestaShopWebService",
"license": "GNU-3.0",
"authors": [
{
"name": "Marcos Redondo",
"email": "[email protected]",
"role": "Full-Stack Developer"
}
],
"require-dev": {
"phpunit/phpunit": "5.7.20"
},
"require": {
"php": ">=5.6",
"ext-curl": "*",
"guzzlehttp/guzzle": "^6.2.3"
},
"autoload": {
"psr-4": {
"PshopWs\\": "src/",
"PshopWs\\Test\\": "test/"
}
}
}