-
Notifications
You must be signed in to change notification settings - Fork 108
/
composer.json
32 lines (32 loc) · 861 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
{
"name": "bllim/datatables",
"description": "Server-side handler of DataTables Jquery Plugin for Laravel 4",
"keywords" : ["laravel4","laravel","datatables","datatable","datatables jquery plugin"],
"license": "MIT",
"authors": [
{
"name": "Bilal Gultekin",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/support": ">=4.0.0",
"illuminate/database": ">=4.0.0",
"illuminate/view": ">=4.0.0",
"illuminate/filesystem": ">=4.0.0"
},
"require-dev": {
"laravel/laravel": ">=4.0.0",
"mockery/mockery": "0.7.2",
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"Bllim\\Datatables": "src/"
}
}
}