-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
35 lines (35 loc) · 953 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
{
"description": "This is a Laravel 5 package for the server and client side of DataTables (http://datatables.net/)",
"keywords": ["laravel", "datatables", "ajax", "jquery", "dynatable"],
"license": "MIT",
"homepage": "http://github.com/OpenSkill/Datatable",
"authors": [
{
"name": "Nils Plaschke",
"email": "[email protected]",
"homepage": "http://nilsplaschke.de",
"role": "Developer"
}
],
"name": "openskill/datatable",
"require": {
"php": ">=5.4.0",
"symfony/http-foundation": "~2.1|>=2.7.0|~3.0",
"illuminate/support": ">=4.2.2",
"illuminate/contracts": ">=4.2.2",
"illuminate/config": ">=4.2.2"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"mockery/mockery": "0.9.*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"OpenSkill\\Datatable\\": "src/OpenSkill/Datatable"
}
},
"scripts": {
"test": "phpunit"
}
}