serv version config

This commit is contained in:
Tykayn 2019-07-01 21:16:04 +02:00
parent 52f3b775c2
commit 64bef86616
17 changed files with 104 additions and 99 deletions

0
TEST Normal file → Executable file
View File

View File

0
app/Resources/views/logged/angular/totals.html.twig Normal file → Executable file
View File

0
app/Resources/views/seriefestival/edit.html.twig Normal file → Executable file
View File

0
app/Resources/views/seriefestival/index.html.twig Normal file → Executable file
View File

0
app/Resources/views/seriefestival/new.html.twig Normal file → Executable file
View File

0
app/Resources/views/seriefestival/show.html.twig Normal file → Executable file
View File

View File

@ -1,84 +1,85 @@
imports: imports:
- { resource: parameters.yml } - { resource: parameters.yml }
- { resource: security.yml } - { resource: security.yml }
- { resource: services.yml } - { resource: services.yml }
# Put parameters here that don't need to change on each machine where the app is deployed # Put parameters here that don't need to change on each machine where the app is deployed
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration # https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
parameters: parameters:
locale: fr locale: fr
framework: framework:
#esi: ~ #esi: ~
translator: { fallbacks: ['%locale%'] } translator: { fallbacks: ['%locale%'] }
secret: '%secret%' secret: '%secret%'
router: router:
resource: '%kernel.project_dir%/app/config/routing.yml' resource: '%kernel.project_dir%/app/config/routing.yml'
strict_requirements: ~ strict_requirements: ~
form: ~ form: ~
csrf_protection: ~ csrf_protection: ~
validation: { enable_annotations: true } validation: { enable_annotations: true }
#serializer: { enable_annotations: true } #serializer: { enable_annotations: true }
default_locale: '%locale%' default_locale: '%locale%'
trusted_hosts: ~ trusted_hosts: ~
session: session:
# https://symfony.com/doc/current/reference/configuration/framework.html#handler-id # https://symfony.com/doc/current/reference/configuration/framework.html#handler-id
handler_id: session.handler.native_file handler_id: session.handler.native_file
save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%' save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%'
fragments: ~ fragments: ~
http_method_override: true http_method_override: true
assets: ~ assets: ~
php_errors: php_errors:
log: true log: true
templating: templating:
engines: ['twig'] engines: ['twig']
# Twig Configuration # Twig Configuration
twig: twig:
debug: '%kernel.debug%' debug: '%kernel.debug%'
strict_variables: '%kernel.debug%' strict_variables: '%kernel.debug%'
# Doctrine Configuration # Doctrine Configuration
doctrine: doctrine:
dbal: dbal:
driver: pdo_mysql driver: pdo_mysql
host: '%database_host%' server_version: '%server_version%'
port: '%database_port%' host: '%database_host%'
dbname: '%database_name%' port: '%database_port%'
user: '%database_user%' dbname: '%database_name%'
password: '%database_password%' user: '%database_user%'
charset: UTF8 password: '%database_password%'
mapping_types: charset: UTF8
enum: string mapping_types:
# if using pdo_sqlite as your database driver: enum: string
# 1. add the path in parameters.yml # if using pdo_sqlite as your database driver:
# e.g. database_path: '%kernel.project_dir%/var/data/data.sqlite' # 1. add the path in parameters.yml
# 2. Uncomment database_path in parameters.yml.dist # e.g. database_path: '%kernel.project_dir%/var/data/data.sqlite'
# 3. Uncomment next line: # 2. Uncomment database_path in parameters.yml.dist
#path: '%database_path%' # 3. Uncomment next line:
#path: '%database_path%'
orm: orm:
auto_generate_proxy_classes: '%kernel.debug%' auto_generate_proxy_classes: '%kernel.debug%'
naming_strategy: doctrine.orm.naming_strategy.underscore naming_strategy: doctrine.orm.naming_strategy.underscore
auto_mapping: true auto_mapping: true
# Swiftmailer Configuration # Swiftmailer Configuration
swiftmailer: swiftmailer:
transport: '%mailer_transport%' transport: '%mailer_transport%'
host: '%mailer_host%' host: '%mailer_host%'
username: '%mailer_user%' username: '%mailer_user%'
password: '%mailer_password%' password: '%mailer_password%'
# spool: { type: memory } # spool: { type: memory }
encryption: '%mailer_encryption%' encryption: '%mailer_encryption%'
port: '%mailer_port%' port: '%mailer_port%'
#fos user bundle #fos user bundle
fos_user: fos_user:
db_driver: orm # other valid values are 'mongodb' and 'couchdb' db_driver: orm # other valid values are 'mongodb' and 'couchdb'
firewall_name: main firewall_name: main
user_class: AppBundle\Entity\User user_class: AppBundle\Entity\User
registration: registration:
confirmation: confirmation:
enabled: true enabled: true
from_email: from_email:
address: "%mailer_user%" address: "%mailer_user%"
sender_name: "%mailer_user%" sender_name: "%mailer_user%"

View File

@ -29,3 +29,5 @@ parameters:
twitter_secret: change_this twitter_secret: change_this
disqus_id: change_this disqus_id: change_this
disqus_secret: change_this disqus_secret: change_this
server_version: '5.7'

View File

@ -1,39 +1,41 @@
# To get started with security, check out the documentation:# To get started with security, check out the documentation: # To get started with security, check out the documentation:# To get started with security, check out the documentation:
# https://symfony.com/doc/current/security.html # https://symfony.com/doc/current/security.html
security: security:
encoders: encoders:
FOS\UserBundle\Model\UserInterface: bcrypt FOS\UserBundle\Model\UserInterface: bcrypt
# https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded # https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
providers: providers:
fos_userbundle: fos_userbundle:
id: fos_user.user_provider.username id: fos_user.user_provider.username
firewalls: firewalls:
dev: dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/ pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false security: false
# https://symfony.com/doc/current/security/form_login_setup.html # https://symfony.com/doc/current/security/form_login_setup.html
# activate different ways to authenticate # activate different ways to authenticate
# https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate # https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
http_basic: ~ http_basic: ~
main: main:
pattern: ^/ pattern: ^/
anonymous: ~ anonymous: ~
logout: true logout: true
logout_on_user_change: true logout_on_user_change: true
form_login: form_login:
provider: fos_userbundle provider: fos_userbundle
csrf_token_generator: security.csrf.token_manager csrf_token_generator: security.csrf.token_manager
default_target_path: dashboard default_target_path: dashboard
login_path: fos_user_security_login login_path: fos_user_security_login
check_path: /login_check check_path: /login_check
role_hierarchy: role_hierarchy:
ROLE_ADMIN: ROLE_USER ROLE_ADMIN: ROLE_USER
ROLE_SUPER_ADMIN: ROLE_ADMIN ROLE_SUPER_ADMIN: ROLE_ADMIN
access_control:
- { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/dashboard$, role: IS_AUTHENTICATED_REMEMBERED }
- { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/u, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/admin/, role: ROLE_ADMIN }
access_control:
- { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/dashboard$, role: IS_AUTHENTICATED_REMEMBERED }
- { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/admin/, role: ROLE_ADMIN }

0
assets/js/parts/previsionnel.js Normal file → Executable file
View File

BIN
composer-temp.phar Normal file

Binary file not shown.

0
docs/installation.md Normal file → Executable file
View File

0
docs/upgrade.md Normal file → Executable file
View File

0
src/AppBundle/Controller/SerieFestivalController.php Normal file → Executable file
View File

0
src/AppBundle/Form/SerieFestivalType.php Normal file → Executable file
View File

View File