-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
executable file
·50 lines (50 loc) · 1.55 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
{
"name": "prestashopcorp/psxmarketingwithgoogle",
"description": "PrestaShop Essentials - Promote your products on Google",
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"prepend-autoloader": false,
"classmap-authoritative": true,
"platform": {
"php": "7.2.5"
},
"platform-check": false
},
"require": {
"php": ">=7.2",
"vlucas/phpdotenv": "^3.4",
"segmentio/analytics-php": "^1.5",
"prestashop/module-lib-faq": "^2.0",
"prestashop/module-lib-service-container": "^2.0",
"prestashop/prestashop-accounts-installer": "dev-main",
"prestashopcorp/module-lib-billing": "^3.3",
"symfony/polyfill-php80": "^1.23.1",
"sentry/sentry": "^1.11",
"brick/phonenumber": "^0.4.1"
},
"require-dev": {
"prestashop/php-dev-tools": "^4.2",
"phpunit/phpunit": "^8.5",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"PrestaShop\\Module\\PsxMarketingWithGoogle\\": "classes/"
},
"classmap": [
"psxmarketingwithgoogle.php",
"controllers/",
"classes/"
]
},
"autoload-dev": {
"psr-4": {
"PrestaShop\\Module\\PsxMarketingWithGoogle\\Tests\\Unit\\": "tests/unit",
"PrestaShop\\Module\\PsxMarketingWithGoogle\\Tests\\Integration\\": "tests/integration"
}
},
"author": "PrestaShop",
"license": "AFL-3.0",
"type": "prestashop-module"
}