-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (44 loc) · 915 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
41
42
43
44
45
{
"name": "kusflo/prestashop-ws-ddd",
"type": "library",
"minimum-stability": "dev",
"description": "PHP wrapper for PrestaShop Webservices 1.7.x and 1.6.x.",
"keywords": [
"php",
"prestashop",
"webservices",
"ddd",
"hexagonal",
"store",
"api",
"erp"
],
"homepage": "https://github.com/kusflo/prestashop-ws-ddd",
"license": "MIT",
"authors": [
{
"name": "Marcos Redondo",
"email": "[email protected]",
"role": "Software Developer"
}
],
"require-dev": {
"phpunit/phpunit": "5.7.20"
},
"require": {
"php": "~7.4",
"symfony/dotenv": "5.x-dev",
"prestashop/prestashop-webservice-lib": "dev-master",
"ext-dom": "*",
"ext-simplexml": "*"
},
"autoload": {
"psr-4": {
"PsWs\\": "src/",
"PsWs\\Test\\": "test/"
}
},
"scripts": {
"phpunit": "phpunit --configuration phpunit.xml"
}
}