forked from dereuromark/cakephp-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.85 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
{
"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.6",
"cakephp/cakephp": "^3.5.10",
"dereuromark/cakephp-shim": "^1.6"
},
"require-dev":{
"cakephp/chronos": "^1.0.1",
"mobiledetect/mobiledetectlib": "^2.8",
"fig-r/psr2r-sniffer": "dev-master",
"yangqi/htmldom": "^1.0"
},
"autoload": {
"psr-4": {
"Tools\\": "src/",
"Tools\\Test\\Fixture\\": "tests/Fixture/"
}
},
"autoload-dev": {
"psr-4": {
"Tools\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"App\\": "tests/test_app/"
}
},
"suggest": {
"yangqi/htmldom": "For HtmlDom usage"
},
"support":{
"source": "https://github.com/dereuromark/cakephp-tools",
"issues": "https://github.com/dereuromark/cakephp-tools/issues"
},
"scripts": {
"test": "php phpunit.phar",
"test-setup": "[ ! -f phpunit.phar ] && wget https://phar.phpunit.de/phpunit-5.7.20.phar && mv phpunit-5.7.20.phar phpunit.phar || true",
"test-coverage": "php phpunit.phar --log-junit webroot/coverage/unitreport.xml --coverage-html webroot/coverage --coverage-clover webroot/coverage/coverage.xml",
"cs-check": "phpcs -p --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --ignore=/cakephp-tools/vendor/,/tmp/,/logs/,/tests/test_files/ --extensions=php ./",
"cs-fix": "phpcbf -v --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --ignore=/cakephp-tools/vendor/,/tmp/,/logs/,/tests/test_files --extensions=php ./"
},
"config": {
"process-timeout": 600
}
}