Skip to content
This repository was archived by the owner on Feb 16, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
image: php56

before_script:
- php /composer.phar install --no-progress --no-scripts
- cp app/config/parameters.yml.dist app/config/parameters.yml

run_tests:
script:
- SYMFONY_DEPRECATIONS_HELPER=weak bin/phpunit -c app/

code_styles:
script:
- bin/phpcs --standard=psr2 --extensions=php --warning-severity=0 src/
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
"doctrine/doctrine-fixtures-bundle": "^2.3",
"fzaninotto/faker": "^1.5",
"symfony/phpunit-bridge": "^3.0",
"phpunit/phpunit": "^5.2 || ^4.8"
"phpunit/phpunit": "^5.2 || ^4.8",
"squizlabs/php_codesniffer": "^2.6"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nothing in the lock file?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ahh didn't notice composer ran out of memory, hang on.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@WouterSioen added the lock file to the first commit

},
"scripts": {
"post-install-cmd": [
Expand Down
87 changes: 85 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.