-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (36 loc) · 1.06 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
{
"name": "rootoor225/mvc-framework-php",
"description": "Amateur complete framework website developped in PHP using MVC design Pattern",
"keywords": ["site", "website", "PHP MVC framework"],
"homepage": "http://github.com/rootoor225",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Junior Adi",
"email": "[email protected]",
"homepage": "https://github.com/rootoor225"
}
],
"require": {
"monolog/monolog": "2.0.0-beta2",
"psr/log": "1.1.0",
"filp/whoops": "2.4.1",
"symfony/var-dumper": "4.3.2",
"altorouter/altorouter": "1.2.0",
"ckeditor/ckeditor": "4.11.4",
"vlucas/valitron": "2.x-dev",
"zendframework/zend-authentication": "^2.7",
"zendframework/zend-validator": "^2.12",
"zendframework/zend-session": "^2.8",
"xlad/formr": "dev-master"
},
"autoload":{
"psr-4": {
"App\\":"src/"
}
},
"files":{
"App\\Utils":"Utils/"
}
}