-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
49 lines (49 loc) · 1.23 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
{
"name": "muffin/multiselect",
"description": "Toggle, select or multiselect a database field based on a set of conditions",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"muffin",
"multiselect"
],
"homepage": "https://github.com/usemuffin/multiselect",
"license": "MIT",
"authors": [
{
"name": "Philippe Lafrance",
"homepage": "http://phillafrance.com",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/usemuffin/multiselect/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/usemuffin/multiselect/issues",
"source": "https://github.com/usemuffin/multiselect"
},
"require": {
"cakephp/cakephp-codesniffer": "^2.0"
},
"require-dev": {
"cakephp/cakephp": "~3.0",
"phpunit/phpunit": "~4.1"
},
"autoload": {
"psr-4": {
"Muffin\\Multiselect\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Muffin\\Multiselect\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}