-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 1.16 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
{
"name": "koffiebaard/what-the-sheet",
"description": "What The Sheet is the best thing since sliced cake.",
"license": "GPL-3.0-or-later",
"require": {
"paragonie/random-lib": "^2.0",
"vlucas/phpdotenv": "^5.4",
"slim/slim": "4.*",
"slim/psr7": "^1.5",
"php-di/php-di": "^6.4",
"monolog/monolog": "^3.2",
"rakit/validation": "^1.4",
"robmorgan/phinx": "^0.12.13",
"phpunit/phpunit": "^9.5",
"nekofar/slim-test": "^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "*"
},
"scripts": {
"post-install-cmd": "@test",
"start": "cd public; php -S 0.0.0.0:8000",
"test": "vendor/bin/phpunit --verbose tests",
"test-mem": "vendor/bin/phpunit --verbose tests",
"lint": "vendor/bin/phpcs -n src public",
"lint-fix": "vendor/bin/phpcbf -n src public",
"migrate-up": "vendor/bin/phinx migrate -e whatthesheet",
"migrate-down": "vendor/bin/phinx rollback -e whatthesheet",
"check-all": [
"@migrate-up",
"@test",
"@test-mem",
"@lint"
]
}
}