Changed App namespace to Infinito namespace

This commit is contained in:
Kevin Frantz
2019-02-17 14:33:19 +01:00
parent bf5d11a318
commit 493471df5f
424 changed files with 1488 additions and 1500 deletions

View File

@@ -16,8 +16,8 @@ doctrine:
collate: utf8mb4_unicode_ci
url: '%env(resolve:DATABASE_URL)%'
types:
CRUDType: App\DBAL\Types\Meta\Right\CRUDType
LayerType: App\DBAL\Types\Meta\Right\LayerType
CRUDType: Infinito\DBAL\Types\Meta\Right\CRUDType
LayerType: Infinito\DBAL\Types\Meta\Right\LayerType
orm:
auto_generate_proxy_classes: '%kernel.debug%'
naming_strategy: doctrine.orm.naming_strategy.underscore
@@ -27,7 +27,7 @@ doctrine:
is_bundle: false
type: annotation
dir: '%kernel.project_dir%/src/Entity'
prefix: 'App\Entity'
prefix: 'Infinito\Entity'
alias: App
#resolve_target_entities:
# App\Domain\RequestManagement\Right\RequestedRightServiceInterface: App\Domain\RequestManagement\Right\RequestedRightService2
# Infinito\Domain\RequestManagement\Right\RequestedRightServiceInterface: Infinito\Domain\RequestManagement\Right\RequestedRightService2

View File

@@ -1,5 +1,5 @@
doctrine_migrations:
dir_name: '%kernel.project_dir%/src/Migrations'
# namespace is arbitrary but should be different from App\Migrations
# namespace is arbitrary but should be different from Infinito\Migrations
# as migrations classes should NOT be autoloaded
namespace: DoctrineMigrations

View File

@@ -7,9 +7,9 @@ fos_rest: ~
# view_response_listener: true
# exception:
# codes:
# App\Exception\MyException: 403
# Infinito\Exception\MyException: 403
# messages:
# App\Exception\MyException: Forbidden area.
# Infinito\Exception\MyException: Forbidden area.
# format_listener:
# rules:
# - { path: ^/api, prefer_extension: true, fallback_format: json, priorities: [ json, html ] }

View File

@@ -1,7 +1,7 @@
fos_user:
db_driver: orm # other valid values are 'mongodb' and 'couchdb'
firewall_name: main
user_class: App\Entity\User
user_class: Infinito\Entity\User
from_email:
address: "%env(MAILER_SENDER)%"
sender_name: "%env(MAILER_USER)%"

View File

@@ -1,5 +1,5 @@
simple_things_entity_audit:
audited_entities:
#- App\Entity\AbstractSource
- App\Entity\NameSource
- App\Entity\UserSource
#- Infinito\Entity\AbstractSource
- Infinito\Entity\NameSource
- Infinito\Entity\UserSource