-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 1.89 KB
/
Copy pathcomposer.json
File metadata and controls
79 lines (79 loc) · 1.89 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "componenta/skeleton",
"description": "Componenta Framework application skeleton",
"type": "project",
"license": "MIT",
"keywords": [
"componenta",
"framework",
"skeleton",
"cqrs",
"psr-7",
"psr-11",
"psr-15"
],
"require": {
"php": "^8.4",
"ext-ctype": "*",
"ext-json": "*",
"ext-mbstring": "*",
"componenta/app": "^1.0",
"componenta/app-console": "^1.0",
"componenta/app-http": "^1.0",
"componenta/composer-plugin": "^1.0",
"componenta/config": "^1.0",
"componenta/error-handler-app": "^1.0",
"componenta/http": "^1.0",
"componenta/http-body-parsing-middleware": "^1.0",
"componenta/http-psr": "^1.0",
"componenta/http-psr-nyholm": "^1.0",
"componenta/interceptor": "^1.0",
"componenta/interceptor-app": "^1.0",
"componenta/path-resolver": "^1.0",
"componenta/router": "^1.0",
"componenta/router-app": "^1.0",
"componenta/templater-app": "^1.0",
"psr/container": "^2.0",
"symfony/console": "^7.4 || ^8.0"
},
"require-dev": {
"pestphp/pest": "^4.0",
"phpstan/phpstan": "^2.1",
"symfony/var-dumper": "^7.4 || ^8.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"classmap": [
"installer/Installer.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"Installer::install"
],
"serve": "@php -S localhost:8000 -t public/",
"analyse": "@php vendor/bin/phpstan analyse bin config public src tests",
"test": "@php vendor/bin/pest"
},
"config": {
"allow-plugins": {
"componenta/composer-plugin": true,
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"extra": {
"componenta": {
"config-providers-file": "config/componenta-providers.php"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}