-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.1 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
{
"name": "jelmerd/table-helper",
"type": "cakephp-plugin",
"description": "TableHelper for CakePHP 3.x",
"homepage": "http://github.com/JelmerD/TableHelper",
"license": "MIT",
"authors": [
{
"name": "Jelmer Droge",
"homepage": "http://www.jelmerdroge.nl",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/JelmerD/TableHelper/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/JelmerD/TableHelper/issues",
"source": "https://github.com/JelmerD/TableHelper"
},
"require": {
"php": ">=5.5.9",
"composer/installers": "*",
"cakephp/cakephp": ">=3.0 <4.0.0"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"cakephp/cakephp-codesniffer": "^2.2"
},
"autoload": {
"psr-4": {
"TableHelper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TableHelper\\Test\\": "tests",
"TableHelper\\Test\\Fixture\\": "tests"
}
}
}