Skip to content

Commit 2afe303

Browse files
author
Martin de Keijzer
committed
Update to the latest broadcast bundle version
1 parent c5de405 commit 2afe303

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+3939
-1827
lines changed

.env

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# In all environments, the following files are loaded if they exist,
2+
# the later taking precedence over the former:
3+
#
4+
# * .env contains default values for the environment variables needed by the app
5+
# * .env.local uncommitted file with local overrides
6+
# * .env.$APP_ENV committed environment-specific defaults
7+
# * .env.$APP_ENV.local uncommitted environment-specific overrides
8+
#
9+
# Real environment variables win over .env files.
10+
#
11+
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
12+
#
13+
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
14+
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
15+
16+
###> symfony/framework-bundle ###
17+
APP_ENV=dev
18+
APP_SECRET=815797062f7e881c4bd302923db4123f
19+
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
20+
#TRUSTED_HOSTS='^localhost|example\.com$'
21+
###< symfony/framework-bundle ###
22+
23+
###> doctrine/doctrine-bundle ###
24+
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
25+
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
26+
# Configure your db driver and server_version in config/packages/doctrine.yaml
27+
DATABASE_URL=sqlite:///%kernel.project_dir%/var/data.db
28+
###< doctrine/doctrine-bundle ###
29+
30+
###> google/apiclient ###
31+
GOOGLE_API_KEY=
32+
GOOGLE_CLIENT_ID=
33+
GOOGLE_CLIENT_SECRET=
34+
###< google/apiclient ###
35+
36+
###> symfony/swiftmailer-bundle ###
37+
# For Gmail as a transport, use: "gmail://username:password@localhost"
38+
# For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
39+
# Delivery is disabled by default via "null://localhost"
40+
MAILER_URL=null://localhost
41+
###< symfony/swiftmailer-bundle ###

.env.test

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# define your env variables for the test env here
2+
KERNEL_CLASS='App\Kernel'
3+
APP_SECRET='s$cretf0rt3st'
4+
SYMFONY_DEPRECATIONS_HELPER=999999

.gitignore

+18-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,21 @@
1616
/web/bundles/
1717
sqlite.db.cache
1818
.idea
19-
composer.phar
19+
composer.phar
20+
###> symfony/framework-bundle ###
21+
/.env.local
22+
/.env.local.php
23+
/.env.*.local
24+
/public/bundles/
25+
/var/
26+
/vendor/
27+
###< symfony/framework-bundle ###
28+
29+
###> symfony/phpunit-bridge ###
30+
.phpunit
31+
/phpunit.xml
32+
###< symfony/phpunit-bridge ###
33+
34+
###> symfony/web-server-bundle ###
35+
/.web-server-pid
36+
###< symfony/web-server-bundle ###

app/.htaccess

-7
This file was deleted.

app/AppCache.php

-7
This file was deleted.

app/AppKernel.php

-57
This file was deleted.

app/autoload.php

-13
This file was deleted.

app/config/config.yml

-101
This file was deleted.

app/config/config_dev.yml

-34
This file was deleted.

app/config/config_prod.yml

-21
This file was deleted.

app/config/config_test.yml

-16
This file was deleted.

app/config/parameters.yml.dist

-19
This file was deleted.

app/config/routing.yml

-11
This file was deleted.

app/config/routing_dev.yml

-14
This file was deleted.

0 commit comments

Comments
 (0)