mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Changed App namespace to Infinito namespace
This commit is contained in:
@@ -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
|
@@ -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
|
||||
|
@@ -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 ] }
|
||||
|
@@ -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)%"
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user