-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
54 lines (54 loc) · 1.53 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
47
48
49
50
51
52
53
54
{
"name": "prestashop/ps_apiresources",
"description": "PrestaShop - API Resources",
"homepage": "https://github.com/PrestaShop/ps_apiresources",
"license": "AFL-3.0",
"authors": [
{
"name": "PrestaShop SA",
"email": "contact@prestashop.com"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"prestashop/php-dev-tools": "^4.3",
"czproject/git-php": "^4.2",
"phpunit/phpunit": "^9.6",
"friendsofphp/php-cs-fixer": "^v3"
},
"autoload": {
"psr-4": {
"PrestaShop\\Module\\APIResources\\": "src/"
},
"classmap": [
"ps_apiresources.php"
]
},
"autoload-dev": {
"psr-4": {
"PsApiResourcesTest\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"classmap-authoritative": true,
"optimize-autoloader": true,
"prepend-autoloader": false,
"platform": {
"php": "8.1.0"
}
},
"scripts": {
"clear-test-cache": "PsApiResourcesTest\\EnvironmentBuilder::clearCache",
"create-test-db": [
"@composer clear-test-cache",
"@composer setup-local-tests -- --build-db"
],
"run-module-tests": "@php -d date.timezone=UTC ./vendor/bin/phpunit -c tests/Integration/phpunit-local.xml",
"setup-local-tests": "PsApiResourcesTest\\EnvironmentBuilder::setupLocalTests"
},
"type": "prestashop-module",
"author": "PrestaShop"
}