Skip to content

Commit

Permalink
Merge pull request #1 from Jelmer-Ketelaar/#64
Browse files Browse the repository at this point in the history
#64
  • Loading branch information
Jelmer-Ketelaar authored Oct 19, 2021
2 parents 3e6706d + 762a5da commit 5b7ca5a
Show file tree
Hide file tree
Showing 18 changed files with 641 additions and 19 deletions.
8 changes: 6 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ APP_SECRET=86f8e46e16865da05c3cbe1137e8aa22
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
#
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
# DATABASE_URL="mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7"
DATABASE_URL="postgresql://db_user:[email protected]:5432/db_name?serverVersion=13&charset=utf8"
DATABASE_URL="mysql://root:@127.0.0.1:3306/symfony"
#DATABASE_URL="postgresql://db_user:[email protected]:3306/db_name?serverVersion=13&charset=utf8"
###< doctrine/doctrine-bundle ###

###> nelmio/cors-bundle ###
CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$'
###< nelmio/cors-bundle ###
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@
/phpunit.xml
###< symfony/phpunit-bridge ###

#64
.env
.idea
.DS_Store
###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
.idea
###< phpunit/phpunit ###
Development
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,19 @@
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.2.5",
"php": ">=8.0",
"ext-ctype": "*",
"ext-curl": "*",
"ext-iconv": "*",
"ext-simplexml": "*",
"api-platform/core": "^2.6",
"composer/package-versions-deprecated": "1.11.99.4",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^2.10",
"doctrine/sql-formatter": "^1.1",
"nelmio/cors-bundle": "^2.1",
"phpdocumentor/reflection-docblock": "^5.2",
"sensio/framework-extra-bundle": "^6.1",
"symfony/asset": "5.3.*",
Expand Down Expand Up @@ -48,7 +53,7 @@
"symfony/browser-kit": "5.3.*",
"symfony/css-selector": "5.3.*",
"symfony/debug-bundle": "5.3.*",
"symfony/maker-bundle": "^1.0",
"symfony/maker-bundle": "^1.34",
"symfony/phpunit-bridge": "^5.3",
"symfony/stopwatch": "5.3.*",
"symfony/web-profiler-bundle": "5.3.*"
Expand Down
Loading

0 comments on commit 5b7ca5a

Please sign in to comment.