-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
88 lines (88 loc) · 2.86 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "reun/php-app-template",
"description": "Extendable PHP app template based on Slim Framework",
"type": "project",
"authors": [
{
"name": "Kimmo Salmela",
"email": "kimmo.salmela@reun.eu"
},
{
"name": "Reun Media",
"email": "company@reun.eu",
"homepage": "https://reun.eu"
}
],
"require": {
"php": "^8.3",
"composer/class-map-generator": "^1.5",
"doctrine/migrations": "^3.8.2",
"doctrine/orm": "^3.3",
"middlewares/negotiation": "^2.1.1",
"monolog/monolog": "^3.8",
"php-di/php-di": "^7.0.7",
"psr/container": "^2.0.2",
"psr/http-message": "^2.0",
"psr/http-server-middleware": "^1.0.2",
"psr/log": "^3.0.2",
"psr/simple-cache": "^3.0",
"reun/php-app-config": "^0.3.0",
"reun/php-app-definitions": "^0.2.0",
"reun/twig-utilities": "^0.14.0",
"slim/psr7": "^1.7",
"slim/slim": "^4.14",
"symfony/cache": "^7.1.7",
"symfony/console": "^7.1.8",
"twig/twig": "^3.15",
"vlucas/phpdotenv": "^5.6.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"friendsofphp/php-cs-fixer": "^3.65",
"maximebf/debugbar": "^1.23.3",
"middlewares/debugbar": "^2.1.1",
"pestphp/pest": "^3.5.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0.2",
"phpstan/phpstan-strict-rules": "^2.0",
"zeuxisoo/slim-whoops": "^0.7.3"
},
"suggest": {
"doctrine/dbal": "Database without ORM",
"erusev/parsedown": "Markdown parser",
"ezyang/htmlpurifier": "HTML sanitization",
"itsgoingd/clockwork": "Less portable alternative to PHP Debug Bar",
"respect/validation": "Server-side validation",
"reun/test-utilities": "Additional testing utilites",
"symfony/var-dumper": "Use dump() with Buggregator",
"twig/intl-extra": "Intl Twig extension",
"twig/markdown-extra": "Twig Markdown support"
},
"autoload": {
"psr-4": {
"App\\": "src/App",
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"dev": [
"Composer\\Config::disableProcessTimeout",
". vendor/reun/twig-utilities/bin/detect-vite-dev-server.sh && detect_vite localhost:5173 && php -S 0.0.0.0:8080 -t www"
],
"lint": [
"composer validate",
"composer normalize",
"vendor/bin/php-cs-fixer fix .",
"vendor/bin/phpstan"
],
"test": "vendor/bin/pest"
}
}