forked from lugnsk/micro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.02 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
{
"name": "lugnsk/microphp",
"type": "library",
"license": "MIT",
"homepage": "http://micro.linpax.org/",
"description": "Very small framework written on php to create HL-apps using hierarchical MVC pattern",
"keywords": [
"microphp",
"framework"
],
"support": {
"email": "[email protected]",
"issues": "https://trello.com/b/Zqwf5gYP/microphp",
"forum": "http://forum.micro.linpax.org/",
"wiki": "http://wiki.micro.linpax.org/",
"source": "https://github.com/lugnsk/micro"
},
"authors": [
{
"name": "Oleg Lunegov",
"email": "[email protected]",
"homepage": "http://linpax.org/",
"role": "Founder and project lead"
}
],
"minimum-stability": "dev",
"suggest": {
"ext-curl": "required",
"ext-pdo": "required",
"ext-pdo_mysql": "required"
},
"require": {
"php": ">=5.4.0",
"ext-mbstring": "*",
"lib-pcre": ">=8.31"
},
"require-dev": {
"phpunit/phpunit": "*",
"codeclimate/php-test-reporter": "dev-master"
}
}