Skip to content
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

Dev #7

Merged
merged 12 commits into from
Jun 10, 2024
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
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ up: docker-up
down: docker-down
restart: docker-down docker-up
init: docker-down-clear docker-pull docker-build docker-up scpsc-init
init-no-cache: docker-down-clear docker-pull docker-build docker-up scpsc-init-no-cache
init-no-fixtures: docker-down-clear docker-pull docker-build docker-up scpsc-init-no-fixtures
test: scpsc-test
test-unit: scpsc-test-unit
Expand All @@ -25,7 +26,9 @@ docker-pull:
docker-build:
docker-compose build

scpsc-init: scpsc-composer-install scpsc-migrations scpsc-clear-cache scpsc-fixtures scpsc-generate-ssl-key
scpsc-init: scpsc-composer-install scpsc-clear-cache scpsc-migrations scpsc-fixtures scpsc-generate-ssl-key

scpsc-init-no-cache: scpsc-composer-install scpsc-migrations scpsc-fixtures scpsc-generate-ssl-key

scpsc-init-no-fixtures: scpsc-composer-install scpsc-assets-install scpsc-migrations scpsc-generate-ssl-key

Expand Down
1 change: 1 addition & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
If you have used this project prior to PHP 8.3 (or before 06/10/2024), check this [MIGRATION](docs/MIGRATION.md)
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"ext-json": "*",
"ext-simplexml": "*",
"ext-soap": "*",
"doctrine/doctrine-bundle": "^2.2",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.8",
"doctrine/orm": "^3.0",
"knplabs/knp-menu-bundle": "^3.1",
"knplabs/knp-paginator-bundle": "^6.0",
"lexik/jwt-authentication-bundle": "^2.11",
Expand Down
Loading
Loading