-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
70 lines (70 loc) · 1.98 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
{
"name": "kekos/slim-doctrine-skeleton",
"description": "A Slim Framework skeleton application with Doctrine ORM support",
"homepage": "http://github.com/Kekos/slim-doctrine-skeleton",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "[email protected]",
"homepage": "http://www.joshlockhart.com/"
},
{
"name": "Pierre Berube",
"email": "[email protected]",
"homepage": "http://www.lgse.com/"
},
{
"name": "Christoffer Lindahl Hassel",
"email": "[email protected]",
"homepage": "https://kekos.se/"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"ext-json": "*",
"beberlei/assert": "^3.2",
"doctrine/migrations": "^3.0",
"doctrine/orm": "^2.7",
"kekos/doctrine-console-factory": "^1.0",
"kekos/parse-request-body-middleware": "^1.0",
"monolog/monolog": "^3.4",
"nyholm/psr7": "^1.3",
"nyholm/psr7-server": "^1.0",
"php-di/php-di": "^7.0",
"slim/slim": "^4.5",
"symfony/cache": "^6.3",
"symfony/console": "^6.3",
"symfony/polyfill-uuid": "^1.20"
},
"require-dev": {
"doctrine/sql-formatter": "^1.1",
"filp/whoops": "^2.7",
"friendsofphp/php-cs-fixer": "^3.22",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.16",
"phpunit/phpunit": "^10.3",
"vlucas/phpdotenv": "^5.1"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"config/version.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"cs-fix": "php-cs-fixer fix --allow-risky=yes",
"test": "phpunit"
}
}