Commits on Source (2)
-
Thomas Flori authorededeaae29
-
Thomas Flori authored
switch to gitlab-ci and move project See merge request !24
13eaf21e
.gitlab-ci.yml
0 → 100644
... | ... | @@ -9,9 +9,10 @@ |
"require-dev": { | ||
"phpunit/phpunit": "*", | ||
"tflori/phpunit-printer": "*", | ||
"mockery/mockery": "^1.1", | ||
"squizlabs/php_codesniffer": "^3.5", | ||
"mockery/mockery": "*", | ||
"squizlabs/php_codesniffer": "*", | ||
"tflori/dependency-injector": "^2.2", | ||
"phpmd/phpmd": "*", | ||
"nesbot/carbon": "^2.53" | ||
}, | ||
"autoload": { | ||
... | ... | @@ -25,8 +26,9 @@ |
} | ||
}, | ||
"scripts": { | ||
"code-style": "phpcs --standard=PSR2 src && phpcs --standard=PSR2 --ignore=Examples tests", | ||
"test": "phpunit", | ||
"coverage": "phpunit --coverage-text" | ||
"code-style": "phpcs --colors --standard=PSR2 src tests", | ||
"code-quality": "phpmd src,tests ansi ruleset.xml", | ||
"test": "phpunit --stderr", | ||
"coverage": "phpunit --stderr --coverage-text" | ||
} | ||
} |