-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
48 lines (48 loc) · 1.19 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
{
"name": "brick/app",
"description": "Web application framework",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"Brick",
"App",
"Application",
"Controller",
"View"
],
"license": "MIT",
"require": {
"php": "^8.0",
"brick/di": "~0.4.0",
"brick/event": "~0.1.0",
"brick/html": "~0.1.0",
"brick/http": "~0.3.1",
"brick/reflection": "~0.4.0"
},
"require-dev": {
"ext-pdo": "*",
"brick/form": "0.1.*",
"brick/date-time": "0.1.*",
"brick/geo": "0.2.*",
"doctrine/orm": "2.*",
"phpunit/phpunit": "^9.0",
"php-coveralls/php-coveralls": "^2.4"
},
"suggest": {
"doctrine/orm": "To use the DoctrineObjectPacker",
"brick/date-time": "To use the DateTimeObjectPacker",
"brick/geo": "To use the GeometryObjectPacker",
"brick/form": "To use FormView and FormTableView"
},
"autoload": {
"psr-4": {
"Brick\\App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brick\\App\\Tests\\": "tests/"
}
}
}