-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "httpsoft/http-app",
"description": "HTTP Software Application Template",
"keywords": ["php", "http", "psr-7", "psr-11", "psr-15", "app", "app-template", "project-template"],
"homepage": "https://httpsoft.org/",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Evgeniy Zyubin",
"email": "[email protected]",
"homepage": "https://devanych.ru/",
"role": "Founder and lead developer"
}
],
"support": {
"issues": "https://github.com/httpsoft/http-app/issues",
"source": "https://github.com/httpsoft/http-app",
"docs": "https://httpsoft.org/docs/app"
},
"config": {
"sort-packages": true
},
"require": {
"php": "^7.4|^8.0",
"devanych/di-container": "^2.1",
"httpsoft/http-basis": "^1.1",
"monolog/monolog": "^2.3|^3.3"
},
"require-dev": {
"filp/whoops": "^2.15",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^5.4|^6.2",
"vimeo/psalm": "^4.9|^5.2"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"@chmod-var"
],
"post-update-cmd": [
"@chmod-var"
],
"serve": "php -S 0.0.0.0:8080 -t public/",
"test": "phpunit --colors=always",
"static": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"check": [
"@cs-check",
"@static",
"@test"
],
"chmod-var": "php ./bin/chmod-var.php"
}
}