forked from PrestaShopCorp/ps_facebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.76 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": "prestashop/ps_facebook",
"description": "",
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"prepend-autoloader": false,
"platform": {
"php": "5.6"
}
},
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "~5.3",
"prestashop/circuit-breaker": "^3.0",
"facebook/php-business-sdk": "dev-guzzle5",
"vlucas/phpdotenv": "3.4",
"facebook/graph-sdk": "^5.7",
"prestashop/prestashop-accounts-installer": "^1.0.1",
"prestashop/module-lib-cache-directory-provider": "^1.0",
"prestashop/module-lib-faq": "^1.0",
"prestashop/module-lib-service-container": "^1.3",
"segmentio/analytics-php": "^1.5",
"sentry/sentry": "^1.11.0",
"prestashop/prestashop-accounts-auth": "^2.3"
},
"require-dev": {
"prestashop/php-dev-tools": "^3.0",
"phpunit/phpunit": "^5.7"
},
"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 in order to use their latest changes with Guzzle 5, required by the core.",
"type": "vcs",
"url": "https://github.com/PrestaShopCorp/facebook-php-business-sdk"
}
],
"author": "PrestaShop",
"license": "AFL-3.0"
}