-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 851 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
40
41
42
43
{
"name": "yurii-github/my-library",
"type": "project",
"description": "My book library",
"license": "GPL-3.0-only",
"minimum-stability" : "stable",
"require": {
"php": "~8.3",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"doctrine/dbal": "^3.0",
"guzzlehttp/psr7": "^2.7",
"http-interop/http-factory-guzzle": "^1.0",
"illuminate/database": "^8.0",
"illuminate/events": "^8.0",
"illuminate/validation": "^8.0",
"monolog/monolog": "^2.2",
"ramsey/uuid": "^4.1",
"slim/slim": "^4.6",
"twig/twig": "^3.1"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^11.4"
},
"config": {
"sort-packages": true
}
}