-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.14 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.14 KB
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
{
"name": "kickasscommerce/framework",
"description": "A small proof of concept for Moltin",
"type": "library",
"license": "MIT",
"require": {
"symfony/serializer": "^3.2",
"symfony/property-access": "^3.2",
"goaop/framework": "^2.1",
"cache/filesystem-adapter": "^0.3.3",
"symfony/console": "^3.2",
"vlucas/phpdotenv": "^2.4",
"slim/slim": "^3.7",
"moltin/php-sdk": "^1.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.8",
"phpunit/phpunit": "^6.0"
},
"replace": {
"kickasscommerce/authentication": "self.version",
"kickasscommerce/commerce": "self.version",
"kickasscommerce/moltin": "self.version",
"kickasscommerce/toolbox": "self.version"
},
"autoload": {
"psr-4": {
"KickAss\\": "src/"
}
},
"scripts": {
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 src",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 src",
"test": "phpunit"
},
"bin": [
"octocli"
]
}