This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
80 lines (80 loc) · 2.34 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "biurad/slim-framework",
"description": "Biurad Slim Framework for PHP - Professional Lightweight Framework",
"keywords": [
"micro framework",
"biurad",
"radion",
"psr",
"psr-7",
"psr-11",
"psr-15",
"php framework"
],
"license": "MIT",
"type": "project",
"authors": [{
"name": "Divine Niiquaye",
"email": "support@biuhub.net",
"homepage": "https://www.biurad.ml",
"role": "Developer"
}],
"config": {
"vendor-dir": "Vendor",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.6.0",
"biurad/slim": "1.1.*",
"cartalyst/sentinel": "2.0.*",
"doctrine/dbal": "^2.9",
"eftec/documentstoreone": "^1.8",
"fig/http-message-util": "^1.1.2",
"filp/whoops": "^2.1",
"fzaninotto/faker": "^1.8",
"gregwar/captcha": "~1.1",
"illuminate/database": "^5.8",
"josantonius/session": "^1.1",
"mustache/mustache": "^2.12",
"phpFastCache/phpFastCache": "^4.3",
"phpmailer/phpmailer": "~6.0",
"psr/cache": "^1.0",
"psr/container": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0.1",
"psr/http-server-middleware": "^1.0",
"rakit/validation": "^1.1",
"symfony/var-dumper": "^3.1",
"twig/twig": "^2.6",
"zendframework/zend-diactoros": "^1.7.1 || ^2.0",
"zendframework/zend-json": "^2.6.1 || ^3.0",
"zendframework/zend-log": "^2.10",
"zircote/swagger-php": "^2.0"
},
"require-dev": {
"ext-dom": "*",
"ext-libxml": "*",
"http-interop/http-factory-tests": "^0.5.0",
"php-http/psr7-integration-tests": "dev-master",
"phpunit/phpunit": "^5.7.27 || ^7.0.2",
"mockery/mockery": "^1.0",
"symfony/css-selector": "3.1.*",
"symfony/dom-crawler": "3.1.*"
},
"autoload": {
"psr-4": {
"Radion\\": "Application/"
},
"classmap": [
"Application/Model",
"Application/Controller",
"Application/Service",
"Application/Middleware",
"Application/Helper",
"Application/Src",
"Libraries/"
]
}
}