Merge branch 'gitlab-ci' into 'master'
switch to gitlab-ci and move project See merge request !24
No related branches found
No related tags found
.gitlab-ci.yml
0 → 100644
... | @@ -9,9 +9,10 @@ | ... | @@ -9,9 +9,10 @@ |
"require-dev": { | "require-dev": { | ||
"phpunit/phpunit": "*", | "phpunit/phpunit": "*", | ||
"tflori/phpunit-printer": "*", | "tflori/phpunit-printer": "*", | ||
"mockery/mockery": "^1.1", | "mockery/mockery": "*", | ||
"squizlabs/php_codesniffer": "^3.5", | "squizlabs/php_codesniffer": "*", | ||
"tflori/dependency-injector": "^2.2", | "tflori/dependency-injector": "^2.2", | ||
"phpmd/phpmd": "*", | |||
"nesbot/carbon": "^2.53" | "nesbot/carbon": "^2.53" | ||
}, | }, | ||
"autoload": { | "autoload": { | ||
... | @@ -25,8 +26,9 @@ | ... | @@ -25,8 +26,9 @@ |
} | } | ||
}, | }, | ||
"scripts": { | "scripts": { | ||
"code-style": "phpcs --standard=PSR2 src && phpcs --standard=PSR2 --ignore=Examples tests", | "code-style": "phpcs --colors --standard=PSR2 src tests", | ||
"test": "phpunit", | "code-quality": "phpmd src,tests ansi ruleset.xml", | ||
"coverage": "phpunit --coverage-text" | "test": "phpunit --stderr", | ||
"coverage": "phpunit --stderr --coverage-text" | |||
} | } | ||
} | } |
Please register or sign in to comment