generated from AntoninoM90/slim4-doctrine2-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
73 lines (73 loc) · 1.91 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
{
"name": "antoninom90/slim4-doctrine-skeleton",
"description": "Slim Framework 4 Skeleton Application with Doctrine ORM 2",
"keywords": [
"slim",
"microframework",
"rest",
"doctrine",
"router",
"psr7"
],
"homepage": "http://github.com/AntoninoM90/slim4-doctrine-skeleton",
"type": "template",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "info@joshlockhart.com",
"homepage": "http://www.joshlockhart.com/"
},
{
"name": "Pierre Berube",
"email": "pierre@lgse.com",
"homepage": "http://www.lgse.com/"
},
{
"name": "Antonino M. (@AntoninoM90)",
"homepage": "https://antoninom90.altervista.org/"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"doctrine/annotations": "2.*",
"doctrine/dbal": "^4",
"doctrine/doctrine-bundle": "^2.13",
"doctrine/orm": "^3",
"monolog/monolog": "^3.8",
"php-di/php-di": "^7.0",
"slim/psr7": "^1.7",
"slim/slim": "^4.14",
"symfony/cache": "^7"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^1.0.2",
"phpspec/prophecy-phpunit": "^2.3",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^11.5.1",
"squizlabs/php_codesniffer": "^3.11"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}