-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.38 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
46
47
48
49
50
51
52
53
{
"name": "fawno/cakephp-datatables-helpers",
"description": "DataTables Helpers for CakePHP 4.0",
"type": "cakephp-plugin",
"keywords": ["cakephp", "datatables"],
"license": "MIT",
"support": {
"issues": "https://github.com/fawno/CakePHP-DataTables/issues",
"source": "https://github.com/fawno/CakePHP-DataTables"
},
"require": {
"php": ">=7.2",
"cakephp/cakephp": ">=4.3",
"cakephp/plugin-installer": "^1.3"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.5",
"phpunit/phpunit": "~8.5.0 || ^9.3"
},
"autoload": {
"psr-4": {
"DataTables\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DataTables\\Test\\": "tests/",
"DataTables\\TestApp\\": "tests/test_app/"
}
},
"extra": {
"installer-name": "DataTables"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcbf --colors -p src/ tests/",
"test": "phpunit"
},
"scripts-descriptions": {
"test": "Run PHPUnit tests"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
}
}