-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·47 lines (47 loc) · 944 Bytes
/
composer.json
File metadata and controls
executable file
·47 lines (47 loc) · 944 Bytes
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": "202ecommerce/bridge-sdk",
"version": "2.0.0",
"description": "Bridge API SDK",
"homepage": "https://docs.bridgeapi.io/",
"license": "AFL-3.0",
"authors": [
{
"name": "202 ecommerce",
"email": "tech@202-ecommerce.com"
}
],
"config": {
"vendor-dir": "vendor",
"preferred-install": "dist",
"classmap-authoritative": true,
"optimize-autoloader": true,
"prepend-autoloader": false
},
"config-dev": {
"classmap-authoritative": false,
"optimize-autoloader": false
},
"autoload": {
"psr-4": {
"BridgeSDK\\": "src/"
},
"classmap": [
"src/"
]
},
"require": {
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^0.12.81"
},
"autoload-dev": {
"psr-4": {
"BridgeSDK\\": "src/",
"Tests\\": "tests/"
}
}
}