Skip to content

Commit

Permalink
minor improvment on composer.json and remove unused ci steps
Browse files Browse the repository at this point in the history
  • Loading branch information
MirakuSan committed May 19, 2024
1 parent 23e5cf6 commit 2845d4c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 28 deletions.
17 changes: 1 addition & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,7 @@ jobs:
name: Check HTTPS reachability
if: false # Remove this line when the homepage will be configured, or change the path to check
run: curl -vk --fail-with-body https://localhost
-
name: Create test database
if: false # Remove this line if Doctrine ORM is installed
run: docker compose exec -T php bin/console -e test doctrine:database:create
-
name: Run migrations
if: false # Remove this line if Doctrine Migrations is installed
run: docker compose exec -T php bin/console -e test doctrine:migrations:migrate --no-interaction
-
name: Run PHPUnit
if: false # Remove this line if PHPUnit is installed
run: docker compose exec -T php bin/phpunit
-
name: Doctrine Schema Validator
if: false # Remove this line if Doctrine ORM is installed
run: docker compose exec -T php bin/console -e test doctrine:schema:validate

lint:
name: Docker Lint
runs-on: ubuntu-latest
Expand Down
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "symfony/skeleton",
"name": "boilerplate/ddd",
"type": "project",
"license": "MIT",
"description": "A minimal Symfony project recommended to create bare bones applications",
"description": "A docker based boilerplate for Symfony DDD projects.",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
Expand Down Expand Up @@ -34,6 +34,15 @@
"symfony/validator": "7.0.*",
"symfony/yaml": "7.0.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.57",
"justinrainbow/json-schema": "^5.2",
"phpstan/phpstan": "^1.11",
"qossmic/deptrac-shim": "^1.0",
"symfony/stopwatch": "7.0.*",
"symfony/web-profiler-bundle": "7.0.*",
"vimeo/psalm": "^5.24"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
Expand Down Expand Up @@ -83,14 +92,5 @@
"require": "7.0.*",
"docker": true
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.57",
"justinrainbow/json-schema": "^5.2",
"phpstan/phpstan": "^1.11",
"qossmic/deptrac-shim": "^1.0",
"symfony/stopwatch": "7.0.*",
"symfony/web-profiler-bundle": "7.0.*",
"vimeo/psalm": "^5.24"
}
}
2 changes: 1 addition & 1 deletion composer.lock

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

0 comments on commit 2845d4c

Please sign in to comment.