forked from koffiebaard/what-the-sheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 835 Bytes
/
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
{
"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"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"nekofar/slim-test": "^2.0",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {"Sheet\\": "src/"}
},
"scripts": {
"start": "cd src; php -S localhost:8000",
"test": "vendor/bin/phpunit --verbose tests",
"lint": "vendor/bin/phpcs -n src",
"lint-fix": "vendor/bin/phpcbf -n src"
}
}