-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
58 lines (58 loc) · 1.39 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
50
51
52
53
54
55
56
57
58
{
"name": "muffin/tags",
"description": "Tags plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"muffin",
"tags"
],
"homepage": "https://github.com/usemuffin/tags",
"license": "MIT",
"authors": [
{
"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/usemuffin/tags/issues",
"source": "https://github.com/usemuffin/tags"
},
"require": {
"cakephp/orm": "^4.0",
"cakephp/utility": "^4.0"
},
"require-dev": {
"cakephp/cakephp": "^4.0",
"cakephp/cakephp-codesniffer": "^4.0",
"phpunit/phpunit": "~8.5.0"
},
"suggest": {
"muffin/slug": "For adding slugs to tags"
},
"autoload": {
"psr-4": {
"Muffin\\Tags\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Muffin\\Tags\\Test\\": "tests",
"Muffin\\Tags\\Test\\App\\": "tests/test_app/src"
}
},
"config": {
"sort-packages": true
}
}