forked from naveenraj-17/bigcommerce-api-php-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.13 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
{
"name": "firebearstudio/bigcommerce-api-php-v3",
"type": "library",
"description": "Enables PHP applications to communicate with the Bigcommerce API.",
"keywords": [
"api",
"http",
"rest",
"ecommerce",
"business"
],
"homepage": "http://developer.bigcommerce.com",
"license": "MIT",
"authors": [
{
"name": "Bigcommerce",
"homepage": "http://www.bigcommerce.com"
},
{
"name": "Firebear Studio",
"homepage": "https://github.com/firebearstudio/",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"firebase/php-jwt": "~3.0 || ~5.0 || ~6.4"
},
"require-dev": {
"codeless/jugglecode": "1.0",
"friendsofphp/php-cs-fixer": "^2.13",
"php-coveralls/php-coveralls": "2.1",
"phpunit/phpunit": "^6.4 || ^7.4 || ^7.5"
},
"autoload": {
"psr-0": {
"Bigcommerce\\Api": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bigcommerce\\Test\\": "test/"
}
}
}