Skip to content

Feature/ddd #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 1, 2022
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ jobs:
command: |
make phpcpd

- run:
name: Run PHP Mess Detector
command: |
make phpmd

- store_artifacts:
path: reports

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,7 @@ jobs:
run: make phpinsights
- name: Run php copy past detector
run: make phpcpd
- name: Run php mess detector
run: make phpmd
- name: Stop the docker images
run: make stop-test
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ build:
- make phpstan
- make phpinsights
- make phpcpd
- make phpmd
- make stop-test
artifacts:
paths:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ composer-update:
@make exec-bash cmd="COMPOSER_MEMORY_LIMIT=-1 composer update"

info:
@make exec cmd="bin/console --version"
@make exec cmd="php --version"
@make exec cmd="bin/console about"

logs:
@docker logs -f ${COMPOSE_PROJECT_NAME}_symfony
Expand Down Expand Up @@ -247,5 +247,5 @@ phpstan:
###> Phpinsights PHP quality checks ###
phpinsights:
@echo "\033[32mRunning PHP Insights\033[39m"
@make exec cmd="php -d error_reporting=0 ./vendor/bin/phpinsights analyse --no-interaction --min-quality=100 --min-complexity=85 --min-architecture=100 --min-style=100"
@make exec cmd="php -d error_reporting=0 ./vendor/bin/phpinsights analyse --no-interaction --min-quality=100 --min-complexity=84 --min-architecture=100 --min-style=100"
###< Phpinsights PHP quality checks ###
1 change: 1 addition & 0 deletions bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ pipelines:
- make phpstan
- make phpinsights
- make phpcpd
- make phpmd
- make stop-test
104 changes: 58 additions & 46 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"Elasticsearch"
],
"homepage": "https://github.com/systemsdk/docker-symfony-api",
"version": "v0.1.0",
"version": "v1.0.0",
"license": "MIT",
"authors": [
{
Expand All @@ -41,70 +41,79 @@
"ext-pdo_mysql": "*",
"beberlei/doctrineextensions": "^1.3",
"doctrine/annotations": "^1.13",
"doctrine/doctrine-bundle": "^2.5",
"doctrine/doctrine-bundle": "^2.6",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.10",
"dukecity/command-scheduler-bundle": "^4.0",
"elasticsearch/elasticsearch": "^7.16",
"gedmo/doctrine-extensions": "^3.4",
"lexik/jwt-authentication-bundle": "^2.14",
"doctrine/orm": "^2.12",
"dukecity/command-scheduler-bundle": "^5.0",
"elasticsearch/elasticsearch": "^7.17",
"gedmo/doctrine-extensions": "^3.6",
"lexik/jwt-authentication-bundle": "^2.15",
"mark-gerarts/automapper-plus-bundle": "^1.4",
"matomo/device-detector": "^5.0",
"matthiasnoback/symfony-console-form": "^5.1",
"matomo/device-detector": "^6.0",
"matthiasnoback/symfony-console-form": "^5.3",
"nelmio/api-doc-bundle": "^4.8",
"nelmio/cors-bundle": "^2.2",
"phpdocumentor/reflection-docblock": "^5.3",
"ramsey/uuid-doctrine": "^1.8",
"sensio/framework-extra-bundle": "^6.2",
"symfony/asset": "5.4.*",
"symfony/config": "5.4.*",
"symfony/console": "5.4.*",
"symfony/dotenv": "5.4.*",
"symfony/expression-language": "5.4.*",
"symfony/flex": "^2.0",
"symfony/form": "5.4.*",
"symfony/framework-bundle": "5.4.*",
"symfony/http-client": "5.4.*",
"symfony/intl": "5.4.*",
"symfony/mailer": "5.4.*",
"symfony/messenger": "5.4.*",
"symfony/mime": "5.4.*",
"symfony/amqp-messenger": "6.0.*",
"symfony/asset": "6.0.*",
"symfony/config": "6.0.*",
"symfony/console": "6.0.*",
"symfony/doctrine-messenger": "6.0.*",
"symfony/dotenv": "6.0.*",
"symfony/expression-language": "6.0.*",
"symfony/flex": "^2.1",
"symfony/form": "6.0.*",
"symfony/framework-bundle": "6.0.*",
"symfony/http-client": "6.0.*",
"symfony/intl": "6.0.*",
"symfony/mailer": "6.0.*",
"symfony/messenger": "6.0.*",
"symfony/mime": "6.0.*",
"symfony/monolog-bundle": "^3.7",
"symfony/notifier": "5.4.*",
"symfony/process": "5.4.*",
"symfony/property-access": "5.4.*",
"symfony/property-info": "5.4.*",
"symfony/proxy-manager-bridge": "5.4.*",
"symfony/runtime": "5.4.*",
"symfony/routing": "5.4.*",
"symfony/security-bundle": "5.4.*",
"symfony/serializer": "5.4.*",
"symfony/translation": "5.4.*",
"symfony/twig-bundle": "5.4.*",
"symfony/validator": "5.4.*",
"symfony/web-link": "5.4.*",
"symfony/yaml": "5.4.*",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0"
"symfony/notifier": "6.0.*",
"symfony/process": "6.0.*",
"symfony/property-access": "6.0.*",
"symfony/property-info": "6.0.*",
"symfony/proxy-manager-bridge": "6.0.*",
"symfony/runtime": "6.0.*",
"symfony/routing": "6.0.*",
"symfony/security-bundle": "6.0.*",
"symfony/serializer": "6.0.*",
"symfony/string": "6.0.*",
"symfony/translation": "6.0.*",
"symfony/twig-bundle": "6.0.*",
"symfony/validator": "6.0.*",
"symfony/web-link": "6.0.*",
"symfony/yaml": "6.0.*",
"twig/extra-bundle": "^2.12|^3.0"
},
"conflict": {
"symfony/debug": "<3.3",
"symfony/symfony": "*",
"symfony/twig-bundle": "<3.3"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"bamarni/composer-bin-plugin": "^1.5",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"systemsdk/easy-log-bundle": "1.10.*",
"ergebnis/composer-normalize": "^2.22",
"roave/security-advisories": "dev-latest",
"symfony/browser-kit": "5.4.*",
"symfony/debug-bundle": "5.4.*",
"symfony/maker-bundle": "^1.36",
"symfony/browser-kit": "6.0.*",
"symfony/debug-bundle": "6.0.*",
"symfony/maker-bundle": "^1.40",
"symfony/requirements-checker": "^2.0",
"symfony/stopwatch": "5.4.*",
"symfony/var-dumper": "5.4.*",
"symfony/web-profiler-bundle": "5.4.*"
"symfony/stopwatch": "6.0.*",
"symfony/var-dumper": "6.0.*",
"symfony/web-profiler-bundle": "6.0.*"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"config": {
"platform": {
Expand All @@ -125,11 +134,14 @@
"extra": {
"allow-contrib": "true",
"bamarni-bin": {
"bin-links": true,
"forward-command": true,
"target-directory": "tools"
},
"projectTitle": "Docker Symfony API",
"symfony": {
"allow-contrib": true,
"require": "5.4.*"
"require": "6.0.*"
}
},
"autoload": {
Expand Down
Loading