-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (31 loc) · 936 Bytes
/
composer.json
File metadata and controls
40 lines (31 loc) · 936 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
40
{
"name": "aloraytech/framework",
"description": "Rapid Web App Development Framework",
"license": "(MIT or GPL-3.0-or-later)",
"keywords": ["framework", "web framework","aloraytech","mvc"],
"autoload": {
"psr-4": {
"App\\": "app/",
"Helper\\": "app/Helpers/",
"Config\\": "config/",
"Database\\": "database/",
"Aloraytech\\Framework\\": "src/",
"Framework\\": "src/"
}
},
"authors": [
{
"name": "Krishanu",
"email": "36711704+aloraytech@users.noreply.github.com"
}
],
"require": {
"symfony/http-foundation": "^5.1",
"symfony/routing": "^5.1",
"twig/twig": "^3.1",
"vlucas/phpdotenv": "^5.2",
"symfony/http-kernel": "^5.2",
"symfony/event-dispatcher": "^5.2",
"symfony/dependency-injection": "^5.2"
}
}