This repository has been archived by the owner on Jun 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.75 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
51
52
53
{
"name": "sebkay/spindle",
"description": "An easy to use Slim 4 starter app. Comes with a DI container, Eloquent ORM, Twig for templating, VueJS and Sass.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Seb Kay",
"email": "seb@sebkay.com"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"slim/slim": "^4.6",
"slim/psr7": "^1.2",
"vlucas/phpdotenv": "^5.2",
"php-di/slim-bridge": "^3.1",
"twig/twig": "^3.1",
"slim/csrf": "^1.0",
"illuminate/database": "^8.27",
"fakerphp/faker": "^1.13",
"monolog/monolog": "^2.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.1",
"phpunit/phpunit": "^9.4",
"spatie/ray": "^1.19"
},
"scripts": {
"build:dev": "git clean -xff -e .env && composer install && yarn install && yarn run dev",
"build:prod": "git clean -xffd -e .env && composer install --no-dev && yarn install --prod && yarn run prod",
"lint:php": "./vendor/bin/phpcs --standard=PSR12 src",
"fix:php": "./vendor/bin/phpcbf --standard=PSR12 src",
"analyse:php": "./vendor/bin/psalm --show-info=true",
"test:php": "./vendor/bin/phpunit",
"test:php-testdox": "@test:php --testdox",
"test:php-coverage": "@test:php --coverage-html coverage",
"test:php:unit": "@test:php --testsuite Unit",
"test:php:integration": "@test:php --testsuite Integration",
"test:js": "yarn run vue-cli-service test:unit"
}
}