forked from dereuromark/cakephp-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 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": "dereuromark/cakephp-tools",
"type": "cakephp-plugin",
"description": "A CakePHP plugin containing lots of useful and reusable tools",
"keywords": ["cakephp", "plugin", "tools", "utils", "helpers", "components", "behaviors", "datasources"],
"homepage": "https://github.com/dereuromark/cakephp-tools",
"license": "MIT",
"authors": [
{
"name": "Mark Scherer",
"role": "Author",
"homepage": "http://www.dereuromark.de"
}
],
"require":{
"php": ">=5.4",
"cakephp/cakephp": "~3.0",
"dereuromark/cakephp-shim": "~1.0"
},
"require-dev":{
"mobiledetect/mobiledetectlib": "2.*"
},
"autoload": {
"psr-4": {
"Tools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tools\\Test\\": "tests",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests",
"TestApp\\": "tests/TestApp"
}
},
"suggest": {
"yangqi/htmldom": "For HtmlDom usage"
},
"support":{
"source": "https://github.com/dereuromark/cakephp-tools",
"issues": "https://github.com/dereuromark/cakephp-tools/issues"
}
}