forked from skie/plum_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 906 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":"skie/cakephp-search",
"description":"CakePHP Plum Search plugin",
"type":"cakephp-plugin",
"keywords":[
"cakephp",
"search",
"filter",
"cake"
],
"homepage":"https://github.com/skie/plum-search",
"license":"MIT",
"authors":[
{
"name":"Evgeny Tomenko",
"role":"Author",
"homepage":"https://github.com/skie"
}
],
"require":{
"cakephp/cakephp": "3.*",
"cakephp/plugin-installer": "*"
},
"require-dev": {
"phpunit/phpunit": "<6.0",
"cakephp/cakephp-codesniffer": "dev-master"
},
"autoload": {
"psr-4": {
"PlumSearch\\": "src",
"PlumSearch\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"PlumSearch\\Test\\": "tests",
"Cake\\Test\\Fixture\\": "./vendor/cakephp/cakephp/tests/Fixture"
}
},
"support":{
"source":"https://github.com/skie/plum-search",
"issues":"https://github.com/skie/plum-search/issues"
}
}