forked from UseMuffin/Tags
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.43 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.43 KB
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
54
55
56
{
"name" : "alvarium/cakephp-tags",
"description" : "Tags plugin for CakePHP 3.x with UUID",
"type" : "cakephp-plugin",
"keywords" : [
"cakephp",
"muffin",
"tags"
],
"homepage" : "https://github.com/alvarium.io/cakephp-tags",
"license" : "MIT",
"authors" : [
{
"name": "Òscar Casajuana",
"homepage": "https://github.com/elboletaire"
},
{
"name" : "Jad Bitar",
"homepage" : "http://jadb.io",
"role" : "Author"
}, {
"name" : "ADmad",
"homepage" : "https://github.com/ADmad",
"role" : "Author"
}, {
"name" : "Others",
"homepage" : "https://github.com/usemuffin/tags/graphs/contributors"
}
],
"support" : {
"issues" : "https://github.com/alvarium.io/cakephp-tags/issues",
"source" : "https://github.com/alvarium.io/cakephp-tags"
},
"require" : {
"cakephp/orm" : "^3.5",
"cakephp/migrations" : "^2.0"
},
"require-dev" : {
"cakephp/cakephp" : "^3.5",
"phpunit/phpunit" : "^5.7.14|^6.0",
"muffin/slug" : "^1.4"
},
"autoload" : {
"psr-4" : {
"Muffin\\Tags\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"Muffin\\Tags\\Test\\" : "tests"
}
},
"scripts": {
"test": "phpunit"
}
}