forked from facebookarchive/php-graph-sdk
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcomposer.json
47 lines (47 loc) · 1.19 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
{
"name": "joelbutcher/facebook-graph-sdk",
"description": "Facebook SDK for PHP",
"keywords": ["facebook", "sdk", "php"],
"type": "library",
"homepage": "https://github.com/joelbutcher/facebook-graph-sdk",
"license": "MIT",
"authors": [
{
"name": "Joel Butcher",
"homepage": "https://github.com/joelbutcher/facebook-graph-sdk/contributors"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.3 || ^8.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^2.2.0",
"php-http/message": "^1.11.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"guzzlehttp/psr7": "^2.0",
"mockery/mockery": "^1.0",
"php-http/guzzle7-adapter": "^1.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"Facebook\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facebook\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
}
}