forked from cruddy/cruddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (34 loc) · 925 Bytes
/
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
{
"name": "kalnoy/cruddy",
"description": "Backend interface for handling CRUD operations on your Laravel Eloquent models.",
"authors": [
{
"name": "Alexander Kalnoy",
"email": "lazychaser@gmail.com"
}
],
"keywords": ["dashboard", "crud", "administrator", "admin", "backend", "laravel", "eloquent", "cms"],
"require": {
"php": ">=5.4.0",
"laravel/framework": "~4.1.28",
"cartalyst/sentry": "~2.0",
"intervention/image": "~1.5",
"intervention/imagecache": "~0.5"
},
"require-dev": {
"mockery/mockery": "~0.8",
"phpunit/phpunit": "~3.7"
},
"autoload": {
"classmap": [
"src/controllers",
"src/exceptions.php"
],
"psr-0": {
"Kalnoy\\Cruddy\\": "src/"
},
"files": [
"src/helpers.php"
]
}
}