This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.66 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
{
"name": "module-partners/axeptiocookies",
"description": "PrestaShop module axeptio",
"homepage": "https://www.axeptio.eu/",
"license": "OSL-3.0",
"config": {
"platform": {
"php": "5.6.0"
},
"preferred-install": "dist",
"classmap-authoritative": false,
"optimize-autoloader": false,
"prepend-autoloader": false
},
"require": {
"prestashop/module-lib-service-container": "^1.3"
},
"require-dev": {
"prestashop/php-dev-tools": "^v4.3.0",
"prestashop/header-stamp": "^v2.3",
"phpunit/phpunit": "^5",
"phpstan/phpstan": "^0.12"
},
"autoload-dev": {
"psr-4": {
"AxeptiocookiesClasslib\\": "vendor/totpsclasslib/src/",
"AxeptiocookiesAddon\\": "src/"
}
},
"autoload": {
"psr-4": {
"AxeptiocookiesClasslib\\": "vendor/totpsclasslib/src/",
"AxeptiocookiesAddon\\": "src/"
},
"classmap": [
"controllers/",
"axeptiocookies.php"
],
"files": [],
"exclude-from-classmap": [
"vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php"
]
},
"scripts": {
"pre-autoload-dump": "if [ ${TOTPSCLASSLIB_DEV_PATH} ]; then php ${TOTPSCLASSLIB_DEV_PATH}/classlib/refresh.php .; fi; echo '}' >> ./vendor/symfony/config/Tests/Fixtures/ParseError.php",
"license-header": [
"vendor/bin/header-stamp --license=202/license/license.txt --exclude=.github,202,config,node_modules,translations,vendor"
]
},
"type": "prestashop-module",
"author": "202-ecommerce"
}