-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 2.47 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "yuxblank/phackp",
"description": "pHackp aim to provide a fast and easy way to build modern and responsive websites and apps. It provides an Model View Controller structure for organizing your project and tries to be as far as possible 'convention over configuration'",
"version": "0.5.2-alpha",
"license": "MIT",
"type": "library",
"homepage":"http://yuxblank.github.io/phackp",
"authors": [
{
"name": "Yuri Blanc",
"email": "[email protected]",
"homepage": "http://www.yuriblanc.it",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"require-dev": {
"phpunit/phpunit": "5.3.*",
"doctrine/orm" : "2.5.*",
"twig/twig" : "2.0",
"phpunit/dbunit": "^2.0",
"guzzlehttp/guzzle": "~6.0",
"codacy/coverage": "dev-master"
},
"require": {
"php": ">=7.0",
"zendframework/zend-diactoros": "1.3.10",
"php-di/php-di": "5.4.1",
"doctrine/annotations": "1.3.1",
"monolog/monolog": "1.22.1"
},
"autoload": {
"psr-4": {
"yuxblank\\phackp\\core\\": "src/phackp/core",
"yuxblank\\phackp\\core\\api\\": "src/phackp/core/api",
"yuxblank\\phackp\\exceptions\\": "src/phackp/exceptions",
"yuxblank\\phackp\\http\\": "src/phackp/http/",
"yuxblank\\phackp\\http\\api\\": "src/phackp/http/api",
"yuxblank\\phackp\\routing\\": "src/phackp/routing",
"yuxblank\\phackp\\routing\\api\\": "src/phackp/routing/api",
"yuxblank\\phackp\\routing\\exception\\": "src/phackp/routing/exception",
"yuxblank\\phackp\\utils\\" : "src/phackp/utils",
"yuxblank\\phackp\\database\\" : "src/phackp/database",
"yuxblank\\phackp\\database\\api\\" : "src/phackp/database/api",
"yuxblank\\phackp\\database\\driver\\" : "src/phackp/database/driver",
"yuxblank\\phackp\\services\\" : "src/phackp/services",
"yuxblank\\phackp\\providers\\" : "src/phackp/providers",
"yuxblank\\phackp\\view\\" : "src/phackp/view",
"yuxblank\\phackp\\view\\api\\" : "src/phackp/view/api",
"yuxblank\\phackp\\view\\exception\\" : "src/phackp/view/exception",
"yuxblank\\phackp\\view\\twig\\" : "src/phackp/view/twig"
}
},
"autoload-dev": {
"psr-4": {
"test\\tools\\" : "tests/tools",
"test\\controller\\" : "tests/src/controller",
"test\\model\\" : "tests/src/model",
"test\\doctrine\\model\\" : "tests/src/doctrine/model",
"test\\doctrine\\repository\\" : "tests/src/doctrine/repository"
}
}
}