-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
65 lines (65 loc) · 1.89 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
{
"type": "project",
"name": "sunrise/awesome-skeleton",
"homepage": "https://github.com/sunrise-php/awesome-skeleton",
"description": "Awesome Skeleton for modern development on PHP 7.4+ (incl. PHP 8)",
"license": "MIT",
"keywords": [
"sunrise",
"skeleton",
"php-skeleton",
"php7-skeleton",
"php8-skeleton",
"psr-skeleton"
],
"require": {
"php": "^7.4|^8.0",
"spiral/roadrunner": "^1.9",
"php-di/php-di": "^6.3",
"monolog/monolog": "^2.2",
"sunrise/http-factory": "^1.1",
"sunrise/http-header-kit": "^1.1",
"sunrise/http-router": "^2.6",
"sunrise/http-router-openapi": "^1.9",
"doctrine/orm": "^2.8",
"doctrine/migrations": "^2.2",
"symfony/dotenv": "^5.0",
"symfony/console": "^5.0",
"symfony/cache": "^5.0",
"symfony/validator": "^5.0",
"middlewares/payload": "^3.0",
"middlewares/response-time": "^2.0",
"justinrainbow/json-schema": "^5.2",
"arus/doctrine-bridge": "^1.18",
"arus/monolog-telegram-handler": "^2.1",
"arus/http-response-kit": "^1.4"
},
"require-dev": {
"phpbench/phpbench": "^1.0.0-alpha4",
"phpunit/phpunit": "^9.5",
"sunrise/coding-standard": "1.0.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"config/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpunit --colors=always --coverage-text",
"phpcs"
],
"bench": [
"phpbench run --report='generator: \"table\", cols: [\"groups\", \"subject\", \"mean\", \"diff\"], sort: {mean: \"asc\"}'"
],
"serve": "php -S 0.0.0.0:3000 -t public/"
}
}