-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.04 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
{
"name": "zegnat/website-starter",
"description": "My minimum viable setup for starting a PHP project.",
"type": "project",
"version": "6.0.0",
"license": "0BSD",
"authors": [
{
"name": "Martijn van der Ven",
"email": "martijn@vanderven.se"
}
],
"autoload": {
"psr-4": {"app\\": "app/"}
},
"require": {
"laminas/laminas-diactoros": "^2.2",
"laminas/laminas-httphandlerrunner": "^1.1",
"middlewares/fast-route": "^2.0",
"nyholm/psr7-server": "dev-parsedbody-default-null",
"oscarotero/middleland": "^1.0",
"rdlowrey/auryn": "^1.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^9.1"
},
"scripts": {
"check-style": "php-cs-fixer fix --dry-run -vvv",
"fix-style": "php-cs-fixer fix",
"test": "phpdbg -qrr vendor/bin/phpunit",
"serve": "@php -S localhost:8000 -t public/"
},
"config": {
"sort-packages": true
}
}