-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
56 lines (56 loc) · 1.89 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
55
56
{
"name": "prestashopcorp/ps_facebook",
"description": "PrestaShop Social with Facebook & Instagram allows you to easily feature your products on Facebook and Instagram so people can discover and buy them.",
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"prepend-autoloader": false,
"platform": {
"php": "7.2.5"
},
"platform-check": false
},
"require": {
"php": ">=7.2.5",
"vlucas/phpdotenv": "^3.4",
"prestashop/prestashop-accounts-installer": "^1.0",
"prestashop/module-lib-cache-directory-provider": "^1.0",
"prestashop/module-lib-faq": "^2.2",
"prestashop/module-lib-service-container": "^2.0",
"segmentio/analytics-php": "^1.5",
"sentry/sentry": "^1.11.0",
"facebook/php-business-sdk": "dev-guzzle-adapter",
"prestashopcorp/module-lib-billing": "^3.2"
},
"require-dev": {
"prestashop/php-dev-tools": "^4.2",
"phpunit/phpunit": "^8.5",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"PrestaShop\\Module\\PrestashopFacebook\\": "classes/"
},
"classmap": [
"ps_facebook.php",
"controllers/",
"classes/"
]
},
"autoload-dev": {
"psr-4": {
"PrestaShop\\Module\\PrestashopFacebook\\Tests\\Unit\\": "tests/unit",
"PrestaShop\\Module\\PrestashopFacebook\\Tests\\Integration\\": "tests/integration"
}
},
"repositories": [
{
"comment": "Facebook repository has been forked to make it compliant with Guzzle 5 & 7, required by the core.",
"type": "vcs",
"url": "https://github.com/PrestaShopCorp/facebook-php-business-sdk"
}
],
"author": "PrestaShop",
"license": "AFL-3.0",
"type": "prestashop-module"
}