-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.22 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": "bmack/kart",
"type": "library",
"description": "An opinionated PSR-14 implementation",
"keywords": [
"PSR-14",
"PHP-FIG"
],
"homepage": "https://github.com/bmack/kart",
"license": "MIT",
"authors": [
{
"name": "Benni Mack",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"phpunit/phpunit" : "^7.0",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"Bmack\\Kart\\": "src",
"Bmack\\Kart\\Examples\\": "examples"
}
},
"autoload-dev": {
"psr-4": {
"Bmack\\Kart\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"cs-checker": "vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"cs-fixer": "vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"config": {
"sort-packages": true
}
}