-
Notifications
You must be signed in to change notification settings - Fork 57
/
composer.json
39 lines (39 loc) · 1 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
{
"name" : "sprintphp/sprintphp",
"description" : "Supercharged Tools on top of CodeIgniter 3",
"version": "1.0-alpha",
"type": "project",
"keywords": ["php", "codeigniter"],
"homepage": "http://sprintphp.com",
"license": "MIT",
"authors": [
{
"name": "Lonnie Ezell",
"email": "[email protected]",
"homepage": "http://newmythmedia.com",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"Myth\\": "myth/"
}
},
"require": {
"php": ">=5.4",
"mobiledetect/mobiledetectlib": "dev-master",
"raveren/kint": "1.0.*",
"league/commonmark": "0.7.*",
"zendframework/zend-escaper": "2.4.2"
},
"require-dev": {
"mockery/mockery": "dev-master",
"hamcrest/hamcrest-php": "dev-master",
"fzaninotto/faker": "1.5.*@dev"
},
"scripts": {
"post-create-project-cmd": [
"php build/build.php postCreateProject"
]
}
}