-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
44 lines (44 loc) · 898 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
39
40
41
42
43
44
{
"name": "irsyadulibad/codeigniter4-datatables",
"description": "Server side DataTables library for CodeIgniter4 framework",
"keywords": [
"codeigniter",
"datatables",
"server side"
],
"license": "MIT",
"authors": [
{
"name": "Ahmad Irsyadul Ibad",
"email": "ahmadirsyadulibad7@gmail.com",
"homepage": "http://irsyadulibad.my.id",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"codeigniter4/framework": "^4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.6",
"fakerphp/faker": "^1.19"
},
"autoload": {
"psr-4": {
"Irsyadulibad\\DataTables\\": "src/"
},
"files": [
"src/helper.php"
],
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Irsyadulibad\\DataTables\\Tests\\": "tests",
"Irsyadulibad\\DataTables\\Tests\\Support\\": "tests/_support"
}
}
}