forked from fheider/cakephp-datatables
-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
45 lines (45 loc) · 1.16 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
{
"name": "ypnos-web/cakephp-datatables",
"description": "jQuery DataTables for CakePHP 5",
"homepage": "https://github.com/ypnos-web/cakephp-datatables",
"type": "cakephp-plugin",
"keywords": ["cakephp", "datatables"],
"license": "MIT",
"authors": [
{
"name": "Frank Heider",
"homepage": "https://github.com/fheider",
"role": "Author"
},
{
"name": "Johannes Jordan",
"homepage": "https://github.com/ypnos-web",
"role": "Author"
},
{
"name": "Xavier ZOLEZZI",
"homepage": "https://github.com/x-zolezzi",
"role": "Author"
},
{
"name": "Umer Salman",
"homepage": "https://github.com/umer936",
"role": "Author"
}
],
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0"
},
"autoload": {
"psr-4": {
"DataTables\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DataTables\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}