-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 964 Bytes
/
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
{
"name": "henrikthesing/php-project-template",
"description": "project description",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "Henrik Thesing",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"doctrine/doctrine-orm-module": "^5.3",
"doctrine/migrations": "^3.5",
"kokspflanze/zfc-twig": "^4.1",
"laminas/laminas-mvc": "^3.6",
"laminas/laminas-config": "^3.8",
"laminas/laminas-cli": "^1.7",
"laminas/laminas-log": "^2.16",
"laminas/laminas-session": "^2.16",
"vlucas/phpdotenv": "^v5.5",
"ext-pdo": "*",
"ext-json": "*"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Application\\": "module/Application/src/",
"Storage\\": "module/Storage/src/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon"
}
}