-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1016 Bytes
/
Copy pathcomposer.json
File metadata and controls
39 lines (39 loc) · 1016 Bytes
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": "subtext/app-engine",
"description": "Common code for bootstrapping a PHP web application",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alonzo C Turner",
"email": "alonzo.turner@subtextproductions.com"
}
],
"require": {
"php": ">= 8.4",
"symfony/http-foundation": "^7.2",
"symfony/config": "^7.2",
"php-di/php-di": "^7.0",
"symfony/routing": "^7.2",
"monolog/monolog": "^3.9",
"psr/log": "^3.0"
},
"autoload": {
"psr-4": {
"Subtext\\AppEngine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Subtext\\AppEngine\\Test\\Unit\\": "tests/unit"
}
},
"require-dev": {
"phpunit/phpunit": "^12.1",
"vlucas/phpdotenv": "^5.6",
"laravel/pint": "^1.22",
"robmorgan/phinx": "^0.16.8",
"fakerphp/faker": "^1.24",
"mikey179/vfsstream": "^1.6.12"
}
}