forked from skyronic/crudkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 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
{
"name": "skyronic/crudkit",
"description": "Toolkit to quickly build powerful, mobile-friendly CRUD (create/read/update/delete) and admin interfaces. Integrates with Laravel and has support for other MVC Frameworks. Works with MySQL and other databases.",
"license": "MIT",
"version": "0.3.3-beta",
"homepage": "http://www.crudkit.com/",
"authors": [
{
"name": "Anirudh Sanjeev",
"email": "[email protected]",
"homepage": "http://www.skyronic.com/"
}
],
"support": {
"docs": "http://www.crudkit.com/docs/"
},
"autoload": {
"psr-4": {
"CrudKit\\": "src/CrudKit/"
}
},
"autoload-dev": {
"psr-4" : {
"CrudKitTests\\": "tests"
}
},
"keywords": [
"crud",
"database",
"gui",
"admin",
"laravel",
"backend"
],
"minimum-stability": "beta",
"require": {
"doctrine/dbal": "2.5.1",
"twig/twig": "1.18.0",
"league/url": "3.3.1",
"filp/whoops": "~1.1",
"nesbot/carbon": "~1.19"
},
"require-dev": {
"phpunit/phpunit": "4.8.*@dev"
}
}