Skip to content
Open
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
9 changes: 9 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,13 @@ S3_REGION=eu-central-1
S3_BUCKET_NAME=bucket-name
S3_ACCESS_KEY=key
S3_SECRET_KEY=secret
SENDER_NAME_2FA=SomeNameFor2FA
SENDER_EMAIL_2FA=SomeNameFor2FA@example.com
###< app ###

###> symfony/swiftmailer-bundle ###
# For Gmail as a transport, use: "gmail://username:password@localhost"
# For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
# Delivery is disabled by default via "null://localhost"
MAILER_URL=null://localhost
###< symfony/swiftmailer-bundle ###
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ before_script:
- composer install
- cp .env.test.travis .env.test.local
- bin/console doctrine:database:create --env=test
- mysql -u root chetheatre_test < 2021-01-03-theatre-dump.sql
- mysql -u root chetheatre_test < 2021-01-10-theatre-dump.sql
- bin/console doctrine:migrations:migrate --no-interaction --env=test
- bin/phpunit --version

Expand Down
416 changes: 239 additions & 177 deletions 2021-01-03-theatre-dump.sql → 2021-01-10-theatre-dump.sql

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/reload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ env=${1:-dev}

bin/console doctrine:database:drop --force --env=$env
bin/console doctrine:database:create --env=$env
bin/console doctrine:database:import 2021-01-03-theatre-dump.sql --env=$env
bin/console doctrine:database:import 2021-01-10-theatre-dump.sql --env=$env
bin/console doctrine:migrations:migrate --no-interaction --env=$env
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"nelmio/api-doc-bundle": "^3.5",
"nelmio/cors-bundle": "^2.0",
"php-http/guzzle6-adapter": "^2.0",
"scheb/two-factor-bundle": "^4.18",
"sensio/framework-extra-bundle": "^5.1",
"sensiolabs/security-checker": "^6.0",
"sonata-project/admin-bundle": "^3.58",
Expand All @@ -44,6 +45,7 @@
"symfony/process": "4.4.*",
"symfony/security-bundle": "4.4.*",
"symfony/serializer-pack": "*",
"symfony/swiftmailer-bundle": "^3.5",
"symfony/translation": "4.4.*",
"symfony/twig-pack": "^1.0",
"symfony/validator": "4.4.*",
Expand Down
Loading