-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 798 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 798 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": "geriler/framework",
"type": "project",
"license": "MIT",
"version": "1.0.0-beta",
"homepage": "https://github.com/Geriler/framework",
"minimum-stability": "stable",
"authors": [
{
"name": "Alexander Koltygin",
"email": "alexanderkoltygin@gmail.com",
"homepage": "https://github.com/Geriler",
"role": "Developer"
}
],
"require": {
"php": "^7.4",
"twig/twig": "^3.0",
"symfony/dotenv": "^4.3",
"ext-pdo": "*",
"ext-json": "*"
},
"require-dev": {
"fzaninotto/faker": "^1.9",
"kint-php/kint": "^3.3",
"phpunit/phpunit": "^9.2"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Core\\": "core/"
}
},
"scripts": {
"post-update-cmd": [
"@composer dump-autoload"
]
}
}