-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
27 lines (27 loc) · 997 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
{
"name": "lecterror/cakephp-filter-plugin",
"description": "Filter is a CakePHP plugin which enables you to create filtering forms for your data in a very fast and simple way, without getting in the way of paging, sorting and other \\\"standard\\\" things when displaying data. It also remembers the filter conditions in a session, but this can be turned off if undesirable.",
"type": "cakephp-plugin",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"require": {
"cakephp/cakephp": "^3.10"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.1",
"overtrue/phplint": "^2.0|^3.4",
"phpstan/phpstan": "^0.1|^1.10",
"phpunit/phpunit": "^5.7.14|^6.0"
},
"autoload": {
"psr-4": {
"Filter\\": "src/",
"Filter\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}