-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 1 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
{
"name": "202ecommerce/bridge-sdk",
"version": "1.0.0",
"description": "Bridge API SDK",
"homepage": "https://docs.bridgeapi.io/",
"license": "AFL-3.0",
"authors": [
{
"name": "202 ecommerce",
"email": "[email protected]"
}
],
"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",
"psr/log": "^1.0",
"psr/http-message": "^1.0",
"psr/cache": "^1.0.0",
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^0.12.81"
},
"autoload-dev": {
"psr-4": {
"BridgeSDK\\": "src/",
"Tests\\": "tests/"
}
}
}