mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 07:36:34 +03:00
Update Flex endpoint
This commit is contained in:
@@ -20,14 +20,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/test/prometheus_metrics.yaml": {
|
||||
"contents": [
|
||||
"artprima_prometheus_metrics:",
|
||||
" type: in_memory",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/prometheus_metrics.yaml": {
|
||||
"contents": [
|
||||
"artprima_prometheus_metrics:",
|
||||
@@ -39,6 +31,14 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/test/prometheus_metrics.yaml": {
|
||||
"contents": [
|
||||
"artprima_prometheus_metrics:",
|
||||
" type: in_memory",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "a07f1cab0b63419f2153b744a254d9d6c3d732e9"
|
||||
|
||||
@@ -17,6 +17,14 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/beelab_tag.yaml": {
|
||||
"contents": [
|
||||
"beelab_tag:",
|
||||
" tag_class: App\\Entity\\Tag",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/Tag.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -72,14 +80,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/beelab_tag.yaml": {
|
||||
"contents": [
|
||||
"beelab_tag:",
|
||||
" tag_class: App\\Entity\\Tag",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "9bd5cf1ad8576a8ad13e317cf8d7b854883cab9e"
|
||||
|
||||
+118
-118
@@ -49,31 +49,14 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_output/.gitignore": {
|
||||
"contents": [
|
||||
"*",
|
||||
"!.gitignore",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_data/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/unit.suite.yml": {
|
||||
"tests/acceptance/.gitignore": {
|
||||
"contents": [
|
||||
"# Codeception Test Suite Configuration",
|
||||
"#",
|
||||
"# Suite for unit or integration tests.",
|
||||
"",
|
||||
"actor: UnitTester",
|
||||
"modules:",
|
||||
" enabled:",
|
||||
" - Asserts",
|
||||
" - \\App\\Tests\\Helper\\Unit",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
@@ -84,29 +67,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/functional.suite.yml": {
|
||||
"contents": [
|
||||
"# Codeception Test Suite Configuration",
|
||||
"#",
|
||||
"# Suite for functional tests",
|
||||
"# Emulate web requests and make application process them",
|
||||
"# Include one of framework modules (Symfony2, Yii2, Laravel5) to use it",
|
||||
"# Remove this suite if you don't use frameworks",
|
||||
"",
|
||||
"actor: FunctionalTester",
|
||||
"modules:",
|
||||
" enabled:",
|
||||
" - Symfony:",
|
||||
" app_path: 'src'",
|
||||
" environment: 'test'",
|
||||
"# - Doctrine2:",
|
||||
"# depends: Symfony",
|
||||
"# cleanup: true",
|
||||
" - \\App\\Tests\\Helper\\Functional",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/acceptance.suite.yml": {
|
||||
"contents": [
|
||||
"# Codeception Test Suite Configuration",
|
||||
@@ -125,48 +85,17 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/acceptance/.gitignore": {
|
||||
"tests/unit.suite.yml": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/_generated/.gitignore": {
|
||||
"contents": [
|
||||
"*",
|
||||
"!.gitignore",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/AcceptanceTester.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"namespace App\\Tests;",
|
||||
"# Codeception Test Suite Configuration",
|
||||
"#",
|
||||
"# Suite for unit or integration tests.",
|
||||
"",
|
||||
"/**",
|
||||
" * Inherited Methods",
|
||||
" * @method void wantToTest($text)",
|
||||
" * @method void wantTo($text)",
|
||||
" * @method void execute($callable)",
|
||||
" * @method void expectTo($prediction)",
|
||||
" * @method void expect($prediction)",
|
||||
" * @method void amGoingTo($argumentation)",
|
||||
" * @method void am($role)",
|
||||
" * @method void lookForwardTo($achieveValue)",
|
||||
" * @method void comment($description)",
|
||||
" * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)",
|
||||
" *",
|
||||
" * @SuppressWarnings(PHPMD)",
|
||||
"*/",
|
||||
"class AcceptanceTester extends \\Codeception\\Actor",
|
||||
"{",
|
||||
" use _generated\\AcceptanceTesterActions;",
|
||||
"",
|
||||
" /**",
|
||||
" * Define custom actions here",
|
||||
" */",
|
||||
"}",
|
||||
"actor: UnitTester",
|
||||
"modules:",
|
||||
" enabled:",
|
||||
" - Asserts",
|
||||
" - \\App\\Tests\\Helper\\Unit",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
@@ -203,6 +132,94 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/AcceptanceTester.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"namespace App\\Tests;",
|
||||
"",
|
||||
"/**",
|
||||
" * Inherited Methods",
|
||||
" * @method void wantToTest($text)",
|
||||
" * @method void wantTo($text)",
|
||||
" * @method void execute($callable)",
|
||||
" * @method void expectTo($prediction)",
|
||||
" * @method void expect($prediction)",
|
||||
" * @method void amGoingTo($argumentation)",
|
||||
" * @method void am($role)",
|
||||
" * @method void lookForwardTo($achieveValue)",
|
||||
" * @method void comment($description)",
|
||||
" * @method \\Codeception\\Lib\\Friend haveFriend($name, $actorClass = NULL)",
|
||||
" *",
|
||||
" * @SuppressWarnings(PHPMD)",
|
||||
"*/",
|
||||
"class AcceptanceTester extends \\Codeception\\Actor",
|
||||
"{",
|
||||
" use _generated\\AcceptanceTesterActions;",
|
||||
"",
|
||||
" /**",
|
||||
" * Define custom actions here",
|
||||
" */",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/Helper/Acceptance.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"namespace App\\Tests\\Helper;",
|
||||
"",
|
||||
"// here you can define custom actions",
|
||||
"// all public methods declared in helper class will be available in $I",
|
||||
"",
|
||||
"class Acceptance extends \\Codeception\\Module",
|
||||
"{",
|
||||
"",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/Helper/Functional.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"namespace App\\Tests\\Helper;",
|
||||
"",
|
||||
"// here you can define custom actions",
|
||||
"// all public methods declared in helper class will be available in $I",
|
||||
"",
|
||||
"class Functional extends \\Codeception\\Module",
|
||||
"{",
|
||||
"",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/Helper/Unit.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"namespace App\\Tests\\Helper;",
|
||||
"",
|
||||
"// here you can define custom actions",
|
||||
"// all public methods declared in helper class will be available in $I",
|
||||
"",
|
||||
"class Unit extends \\Codeception\\Module",
|
||||
"{",
|
||||
"",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/_generated/.gitignore": {
|
||||
"contents": [
|
||||
"*",
|
||||
"!.gitignore",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/UnitTester.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -235,50 +252,33 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/Helper/Functional.php": {
|
||||
"tests/_output/.gitignore": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"namespace App\\Tests\\Helper;",
|
||||
"",
|
||||
"// here you can define custom actions",
|
||||
"// all public methods declared in helper class will be available in $I",
|
||||
"",
|
||||
"class Functional extends \\Codeception\\Module",
|
||||
"{",
|
||||
"",
|
||||
"}",
|
||||
"*",
|
||||
"!.gitignore",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/Helper/Acceptance.php": {
|
||||
"tests/functional.suite.yml": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"namespace App\\Tests\\Helper;",
|
||||
"# Codeception Test Suite Configuration",
|
||||
"#",
|
||||
"# Suite for functional tests",
|
||||
"# Emulate web requests and make application process them",
|
||||
"# Include one of framework modules (Symfony2, Yii2, Laravel5) to use it",
|
||||
"# Remove this suite if you don't use frameworks",
|
||||
"",
|
||||
"// here you can define custom actions",
|
||||
"// all public methods declared in helper class will be available in $I",
|
||||
"",
|
||||
"class Acceptance extends \\Codeception\\Module",
|
||||
"{",
|
||||
"",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tests/_support/Helper/Unit.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"namespace App\\Tests\\Helper;",
|
||||
"",
|
||||
"// here you can define custom actions",
|
||||
"// all public methods declared in helper class will be available in $I",
|
||||
"",
|
||||
"class Unit extends \\Codeception\\Module",
|
||||
"{",
|
||||
"",
|
||||
"}",
|
||||
"actor: FunctionalTester",
|
||||
"modules:",
|
||||
" enabled:",
|
||||
" - Symfony:",
|
||||
" app_path: 'src'",
|
||||
" environment: 'test'",
|
||||
"# - Doctrine2:",
|
||||
"# depends: Symfony",
|
||||
"# cleanup: true",
|
||||
" - \\App\\Tests\\Helper\\Functional",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"manifests": {
|
||||
"datana-gmbh/datapool-api": {
|
||||
"manifest": {
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"env": {
|
||||
"DATAPOOL_API_BASE_URI": "",
|
||||
"DATAPOOL_API_USERNAME": "",
|
||||
"DATAPOOL_API_PASSWORD": ""
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/datana_datapool_api.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
"",
|
||||
" Datana\\Datapool\\Api\\DatapoolClient:",
|
||||
" arguments:",
|
||||
" - '%env(DATAPOOL_API_BASE_URI)%'",
|
||||
" - '%env(DATAPOOL_API_USERNAME)%'",
|
||||
" - '%env(DATAPOOL_API_PASSWORD)%'",
|
||||
"",
|
||||
" Datana\\Datapool\\Api\\AktenApi: ~",
|
||||
" Datana\\Datapool\\Api\\AktenApiInterface: '@Datana\\Datapool\\Api\\AktenApi'",
|
||||
"",
|
||||
" Datana\\Datapool\\Api\\AktenEventLogApi: ~",
|
||||
" Datana\\Datapool\\Api\\NullAktenEventLogApi: ~",
|
||||
"",
|
||||
" Datana\\Datapool\\Api\\AktenzeichenApi: ~",
|
||||
" Datana\\Datapool\\Api\\FakeAktenzeichenApi: ~",
|
||||
"",
|
||||
"when@prod:",
|
||||
" services:",
|
||||
" Datana\\Datapool\\Api\\AktenEventLogApiInterface: '@Datana\\Datapool\\Api\\AktenEventLogApi'",
|
||||
" Datana\\Datapool\\Api\\AktenzeichenApiInterface: '@Datana\\Datapool\\Api\\AktenzeichenApi'",
|
||||
"",
|
||||
"when@dev:",
|
||||
" services:",
|
||||
" Datana\\Datapool\\Api\\AktenEventLogApiInterface: '@Datana\\Datapool\\Api\\NullAktenEventLogApi'",
|
||||
" Datana\\Datapool\\Api\\AktenzeichenApiInterface: '@Datana\\Datapool\\Api\\FakeAktenzeichenApi'",
|
||||
"",
|
||||
"when@test:",
|
||||
" services:",
|
||||
" Datana\\Datapool\\Api\\AktenEventLogApiInterface: '@Datana\\Datapool\\Api\\NullAktenEventLogApi'",
|
||||
" Datana\\Datapool\\Api\\AktenzeichenApiInterface: '@Datana\\Datapool\\Api\\FakeAktenzeichenApi'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "30ce686c08f1b9b810a67b2ae7a1b2fee9aa9aa2"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -21,8 +21,29 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Document/.gitignore": {
|
||||
"config/packages/prod/doctrine_mongodb.yaml": {
|
||||
"contents": [
|
||||
"doctrine_mongodb:",
|
||||
" auto_generate_proxy_classes: false",
|
||||
" auto_generate_hydrator_classes: false",
|
||||
" document_managers:",
|
||||
" default:",
|
||||
" metadata_cache_driver:",
|
||||
" type: service",
|
||||
" id: doctrine_mongodb.system_cache_provider",
|
||||
"",
|
||||
"services:",
|
||||
" doctrine_mongodb.system_cache_provider:",
|
||||
" class: Symfony\\Component\\Cache\\DoctrineProvider",
|
||||
" public: false",
|
||||
" arguments:",
|
||||
" - '@doctrine_mongodb.system_cache_pool'",
|
||||
"",
|
||||
"framework:",
|
||||
" cache:",
|
||||
" pools:",
|
||||
" doctrine_mongodb.system_cache_pool:",
|
||||
" adapter: cache.system",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
@@ -51,29 +72,8 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/prod/doctrine_mongodb.yaml": {
|
||||
"src/Document/.gitignore": {
|
||||
"contents": [
|
||||
"doctrine_mongodb:",
|
||||
" auto_generate_proxy_classes: false",
|
||||
" auto_generate_hydrator_classes: false",
|
||||
" document_managers:",
|
||||
" default:",
|
||||
" metadata_cache_driver:",
|
||||
" type: service",
|
||||
" id: doctrine_mongodb.system_cache_provider",
|
||||
"",
|
||||
"services:",
|
||||
" doctrine_mongodb.system_cache_provider:",
|
||||
" class: Symfony\\Component\\Cache\\DoctrineProvider",
|
||||
" public: false",
|
||||
" arguments:",
|
||||
" - '@doctrine_mongodb.system_cache_pool'",
|
||||
"",
|
||||
"framework:",
|
||||
" cache:",
|
||||
" pools:",
|
||||
" doctrine_mongodb.system_cache_pool:",
|
||||
" adapter: cache.system",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
|
||||
@@ -18,8 +18,35 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Document/.gitignore": {
|
||||
"config/packages/doctrine_phpcr_dbal.yaml": {
|
||||
"contents": [
|
||||
"doctrine_phpcr:",
|
||||
" # configure the PHPCR session",
|
||||
" session:",
|
||||
" backend:",
|
||||
" type: doctrinedbal",
|
||||
" connection: default",
|
||||
" parameters:",
|
||||
" jackalope.check_login_on_server: false",
|
||||
" workspace: '%env(PHPCR_WORKSPACE)%'",
|
||||
" username: '%env(PHPCR_USER)%'",
|
||||
" password: '%env(PHPCR_PASSWORD)%'",
|
||||
" #logging: '%kernel.debug%'",
|
||||
" #profiling: '%kernel.debug%'",
|
||||
" # enable the ODM layer",
|
||||
" odm:",
|
||||
" auto_mapping: true",
|
||||
" auto_generate_proxy_classes: true",
|
||||
" mappings:",
|
||||
" # offer default resolution of \"App\\Document\\\". For more details, see: https://symfony.com/doc/current/cmf/bundles/phpcr_odm/introduction.html#doctrine-phpcr-odm-configuration",
|
||||
" App:",
|
||||
" mapping: true",
|
||||
" type: annotation",
|
||||
" dir: '%kernel.root_dir%/Document'",
|
||||
" alias: App",
|
||||
" prefix: App\\Document\\",
|
||||
" is_bundle: false",
|
||||
" # add your locale configuration here as described in: https://symfony.com/doc/current/cmf/bundles/phpcr_odm/multilang.html#translation-configuration",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
@@ -68,35 +95,8 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/doctrine_phpcr_dbal.yaml": {
|
||||
"src/Document/.gitignore": {
|
||||
"contents": [
|
||||
"doctrine_phpcr:",
|
||||
" # configure the PHPCR session",
|
||||
" session:",
|
||||
" backend:",
|
||||
" type: doctrinedbal",
|
||||
" connection: default",
|
||||
" parameters:",
|
||||
" jackalope.check_login_on_server: false",
|
||||
" workspace: '%env(PHPCR_WORKSPACE)%'",
|
||||
" username: '%env(PHPCR_USER)%'",
|
||||
" password: '%env(PHPCR_PASSWORD)%'",
|
||||
" #logging: '%kernel.debug%'",
|
||||
" #profiling: '%kernel.debug%'",
|
||||
" # enable the ODM layer",
|
||||
" odm:",
|
||||
" auto_mapping: true",
|
||||
" auto_generate_proxy_classes: true",
|
||||
" mappings:",
|
||||
" # offer default resolution of \"App\\Document\\\". For more details, see: https://symfony.com/doc/current/cmf/bundles/phpcr_odm/introduction.html#doctrine-phpcr-odm-configuration",
|
||||
" App:",
|
||||
" mapping: true",
|
||||
" type: annotation",
|
||||
" dir: '%kernel.root_dir%/Document'",
|
||||
" alias: App",
|
||||
" prefix: App\\Document\\",
|
||||
" is_bundle: false",
|
||||
" # add your locale configuration here as described in: https://symfony.com/doc/current/cmf/bundles/phpcr_odm/multilang.html#translation-configuration",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
|
||||
+22
-22
@@ -40,6 +40,28 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"tsconfig.json": {
|
||||
"contents": [
|
||||
"{",
|
||||
" \"compilerOptions\": {",
|
||||
" \"lib\": [ \"es2015\", \"dom\" ],",
|
||||
" \"module\": \"amd\",",
|
||||
" \"target\": \"es5\",",
|
||||
" \"allowJs\": true,",
|
||||
" \"noImplicitAny\": true,",
|
||||
" \"suppressImplicitAnyIndexErrors\": true,",
|
||||
" \"moduleResolution\": \"node\",",
|
||||
" \"sourceMap\": true,",
|
||||
" \"experimentalDecorators\": true",
|
||||
" },",
|
||||
" \"include\": [",
|
||||
" \"./assets/**/*\"",
|
||||
" ]",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"public/build/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
@@ -96,28 +118,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"tsconfig.json": {
|
||||
"contents": [
|
||||
"{",
|
||||
" \"compilerOptions\": {",
|
||||
" \"lib\": [ \"es2015\", \"dom\" ],",
|
||||
" \"module\": \"amd\",",
|
||||
" \"target\": \"es5\",",
|
||||
" \"allowJs\": true,",
|
||||
" \"noImplicitAny\": true,",
|
||||
" \"suppressImplicitAnyIndexErrors\": true,",
|
||||
" \"moduleResolution\": \"node\",",
|
||||
" \"sourceMap\": true,",
|
||||
" \"experimentalDecorators\": true",
|
||||
" },",
|
||||
" \"include\": [",
|
||||
" \"./assets/**/*\"",
|
||||
" ]",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "293c9bf6865e324e7af3a204b8b7ffedbd3dee74"
|
||||
|
||||
@@ -20,6 +20,31 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/routes/enigma972_user.yaml": {
|
||||
"contents": [
|
||||
"enigma972_user:",
|
||||
" resource: '@Enigma972UserBundle/Controller/'",
|
||||
" type: annotation",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/enigma972_user.yaml": {
|
||||
"contents": [
|
||||
"enigma972_user:",
|
||||
" # if this value equal true, the User should confirm theire mail",
|
||||
" check_mail: false",
|
||||
" # The validity duration in secondes, 4 houres by default (14,400 sec)",
|
||||
" reset_password_code_validity: 14400",
|
||||
" # where to redirect after login",
|
||||
" target: home",
|
||||
" # the no reply email for this app",
|
||||
" no_reply_mail: no-reply@mail.com",
|
||||
" not_send_welcome_mail: true",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Repository/UserRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -98,31 +123,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/enigma972_user.yaml": {
|
||||
"contents": [
|
||||
"enigma972_user:",
|
||||
" resource: '@Enigma972UserBundle/Controller/'",
|
||||
" type: annotation",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/enigma972_user.yaml": {
|
||||
"contents": [
|
||||
"enigma972_user:",
|
||||
" # if this value equal true, the User should confirm theire mail",
|
||||
" check_mail: false",
|
||||
" # The validity duration in secondes, 4 houres by default (14,400 sec)",
|
||||
" reset_password_code_validity: 14400",
|
||||
" # where to redirect after login",
|
||||
" target: home",
|
||||
" # the no reply email for this app",
|
||||
" no_reply_mail: no-reply@mail.com",
|
||||
" not_send_welcome_mail: true",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "498f1288950a5304338e73ce282df934828c8cf4"
|
||||
|
||||
@@ -15,16 +15,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/enqueue.yaml": {
|
||||
"contents": [
|
||||
"enqueue:",
|
||||
" transport:",
|
||||
" default: '%env(resolve:ENQUEUE_DSN)%'",
|
||||
" client: null",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/test/enqueue.yaml": {
|
||||
"contents": [
|
||||
"enqueue:",
|
||||
@@ -35,6 +25,16 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/enqueue.yaml": {
|
||||
"contents": [
|
||||
"enqueue:",
|
||||
" transport:",
|
||||
" default: '%env(resolve:ENQUEUE_DSN)%'",
|
||||
" client: null",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "e6967b803aa3ae4b09fcaab0102d79798726d032"
|
||||
|
||||
@@ -15,16 +15,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/enqueue.yaml": {
|
||||
"contents": [
|
||||
"enqueue:",
|
||||
" default:",
|
||||
" transport: '%env(resolve:ENQUEUE_DSN)%'",
|
||||
" client: null",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/test/enqueue.yaml": {
|
||||
"contents": [
|
||||
"enqueue:",
|
||||
@@ -35,6 +25,16 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/enqueue.yaml": {
|
||||
"contents": [
|
||||
"enqueue:",
|
||||
" default:",
|
||||
" transport: '%env(resolve:ENQUEUE_DSN)%'",
|
||||
" client: null",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "c6ec89b63f963d10ad0d7a7bea170359c119c8bc"
|
||||
|
||||
@@ -16,14 +16,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/dev/ewz_recaptcha.yaml": {
|
||||
"contents": [
|
||||
"ewz_recaptcha:",
|
||||
" enabled: false",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/ewz_recaptcha.yaml": {
|
||||
"contents": [
|
||||
"# See https://github.com/excelwebzone/EWZRecaptchaBundle for full configuration",
|
||||
@@ -33,6 +25,14 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/dev/ewz_recaptcha.yaml": {
|
||||
"contents": [
|
||||
"ewz_recaptcha:",
|
||||
" enabled: false",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "fd4da7bc71749db65bc83abf5d164bfa9c839cf4"
|
||||
|
||||
@@ -21,6 +21,19 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/services_test.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
" autoconfigure: true",
|
||||
"",
|
||||
" App\\Tests\\Behat\\:",
|
||||
" resource: '../tests/Behat/*'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"features/demo.feature": {
|
||||
"contents": [
|
||||
"# This file contains a user story for demonstration only.",
|
||||
@@ -39,19 +52,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/services_test.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
" autoconfigure: true",
|
||||
"",
|
||||
" App\\Tests\\Behat\\:",
|
||||
" resource: '../tests/Behat/*'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"behat.yml.dist": {
|
||||
"contents": [
|
||||
"default:",
|
||||
|
||||
@@ -13,6 +13,31 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/routes/fos_oauth_server.yaml": {
|
||||
"contents": [
|
||||
"fos_oauth_server_token:",
|
||||
" resource: \"@FOSOAuthServerBundle/Resources/config/routing/token.xml\"",
|
||||
"",
|
||||
"fos_oauth_server_authorize:",
|
||||
" resource: \"@FOSOAuthServerBundle/Resources/config/routing/authorize.xml\"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/fos_oauth_server.yaml": {
|
||||
"contents": [
|
||||
"# Read the documentation: https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/blob/master/Resources/doc/index.md#step-5-configure-fosoauthserverbundle",
|
||||
"fos_oauth_server:",
|
||||
" db_driver: orm",
|
||||
"",
|
||||
" client_class: App\\Entity\\Client",
|
||||
" access_token_class: App\\Entity\\AccessToken",
|
||||
" refresh_token_class: App\\Entity\\RefreshToken",
|
||||
" auth_code_class: App\\Entity\\AuthCode",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/Client.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -38,19 +63,19 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/AccessToken.php": {
|
||||
"src/Entity/RefreshToken.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use FOS\\OAuthServerBundle\\Entity\\AccessToken as BaseAccessToken;",
|
||||
"use FOS\\OAuthServerBundle\\Entity\\RefreshToken as BaseRefreshToken;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity",
|
||||
" */",
|
||||
"class AccessToken extends BaseAccessToken",
|
||||
"class RefreshToken extends BaseRefreshToken",
|
||||
"{",
|
||||
" /**",
|
||||
" * @ORM\\Id",
|
||||
@@ -75,19 +100,19 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/RefreshToken.php": {
|
||||
"src/Entity/AccessToken.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use FOS\\OAuthServerBundle\\Entity\\RefreshToken as BaseRefreshToken;",
|
||||
"use FOS\\OAuthServerBundle\\Entity\\AccessToken as BaseAccessToken;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity",
|
||||
" */",
|
||||
"class RefreshToken extends BaseRefreshToken",
|
||||
"class AccessToken extends BaseAccessToken",
|
||||
"{",
|
||||
" /**",
|
||||
" * @ORM\\Id",
|
||||
@@ -148,31 +173,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/fos_oauth_server.yaml": {
|
||||
"contents": [
|
||||
"fos_oauth_server_token:",
|
||||
" resource: \"@FOSOAuthServerBundle/Resources/config/routing/token.xml\"",
|
||||
"",
|
||||
"fos_oauth_server_authorize:",
|
||||
" resource: \"@FOSOAuthServerBundle/Resources/config/routing/authorize.xml\"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/fos_oauth_server.yaml": {
|
||||
"contents": [
|
||||
"# Read the documentation: https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/blob/master/Resources/doc/index.md#step-5-configure-fosoauthserverbundle",
|
||||
"fos_oauth_server:",
|
||||
" db_driver: orm",
|
||||
"",
|
||||
" client_class: App\\Entity\\Client",
|
||||
" access_token_class: App\\Entity\\AccessToken",
|
||||
" refresh_token_class: App\\Entity\\RefreshToken",
|
||||
" auth_code_class: App\\Entity\\AuthCode",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "7300db1277b1ba025cdc2791171d9bf3e7adcc42"
|
||||
|
||||
@@ -13,12 +13,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/DataMigrations/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/data_migrations.yaml": {
|
||||
"contents": [
|
||||
"data_migrations:",
|
||||
@@ -30,6 +24,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/DataMigrations/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "73860d9aaddd69159331184ef0bc99ccd55fa0cb"
|
||||
|
||||
@@ -18,14 +18,6 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/dev/hautelook_alice.yaml": {
|
||||
"contents": [
|
||||
"hautelook_alice:",
|
||||
" fixtures_path: fixtures",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/test/hautelook_alice.yaml": {
|
||||
"contents": [
|
||||
"imports:",
|
||||
@@ -34,6 +26,14 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/dev/hautelook_alice.yaml": {
|
||||
"contents": [
|
||||
"hautelook_alice:",
|
||||
" fixtures_path: fixtures",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"fixtures/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
|
||||
@@ -17,14 +17,6 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/routes/dev/hugosoltys_fitz.yaml": {
|
||||
"contents": [
|
||||
"fitz:",
|
||||
" resource: \"@FitzBundle/Resources/config/routing.xml\"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/test/hugosoltys_fitz.yaml": {
|
||||
"contents": [
|
||||
"fitz:",
|
||||
@@ -33,7 +25,15 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/dev/hugosoltys_fitz.yaml": {
|
||||
"config/routes/dev/hugosoltys_fitz.yaml": {
|
||||
"contents": [
|
||||
"fitz:",
|
||||
" resource: \"@FitzBundle/Resources/config/routing.xml\"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/test/hugosoltys_fitz.yaml": {
|
||||
"contents": [
|
||||
"fitz:",
|
||||
" composer_path: '/usr/local/bin/composer'",
|
||||
@@ -42,7 +42,7 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/test/hugosoltys_fitz.yaml": {
|
||||
"config/packages/dev/hugosoltys_fitz.yaml": {
|
||||
"contents": [
|
||||
"fitz:",
|
||||
" composer_path: '/usr/local/bin/composer'",
|
||||
|
||||
@@ -248,6 +248,9 @@
|
||||
"damienharper/doctrine-audit-bundle": [
|
||||
"1.0"
|
||||
],
|
||||
"datana-gmbh/datapool-api": [
|
||||
"1.0"
|
||||
],
|
||||
"datana-gmbh/intercom-config": [
|
||||
"1.1"
|
||||
],
|
||||
|
||||
@@ -12,6 +12,18 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/prod/jms_serializer.yaml": {
|
||||
"contents": [
|
||||
"jms_serializer:",
|
||||
" visitors:",
|
||||
" json:",
|
||||
" options:",
|
||||
" - JSON_UNESCAPED_SLASHES",
|
||||
" - JSON_PRESERVE_ZERO_FRACTION",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/dev/jms_serializer.yaml": {
|
||||
"contents": [
|
||||
"jms_serializer:",
|
||||
@@ -25,18 +37,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/prod/jms_serializer.yaml": {
|
||||
"contents": [
|
||||
"jms_serializer:",
|
||||
" visitors:",
|
||||
" json:",
|
||||
" options:",
|
||||
" - JSON_UNESCAPED_SLASHES",
|
||||
" - JSON_PRESERVE_ZERO_FRACTION",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/jms_serializer.yaml": {
|
||||
"contents": [
|
||||
"jms_serializer:",
|
||||
|
||||
@@ -12,6 +12,18 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/prod/jms_serializer.yaml": {
|
||||
"contents": [
|
||||
"jms_serializer:",
|
||||
" visitors:",
|
||||
" json_serialization:",
|
||||
" options:",
|
||||
" - JSON_UNESCAPED_SLASHES",
|
||||
" - JSON_PRESERVE_ZERO_FRACTION",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/dev/jms_serializer.yaml": {
|
||||
"contents": [
|
||||
"jms_serializer:",
|
||||
@@ -25,18 +37,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/prod/jms_serializer.yaml": {
|
||||
"contents": [
|
||||
"jms_serializer:",
|
||||
" visitors:",
|
||||
" json_serialization:",
|
||||
" options:",
|
||||
" - JSON_UNESCAPED_SLASHES",
|
||||
" - JSON_PRESERVE_ZERO_FRACTION",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/jms_serializer.yaml": {
|
||||
"contents": [
|
||||
"jms_serializer:",
|
||||
|
||||
@@ -12,6 +12,12 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/admin/resources/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/lag_admin.yaml": {
|
||||
"contents": [
|
||||
"lag_admin:",
|
||||
@@ -20,12 +26,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/admin/resources/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "d1967ac7b058210ed958b5a7cca70a89ce7749af"
|
||||
|
||||
@@ -19,12 +19,6 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"var/storage/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/flysystem.yaml": {
|
||||
"contents": [
|
||||
"# Read the documentation at https://github.com/thephpleague/flysystem-bundle/blob/master/docs/1-getting-started.md",
|
||||
@@ -37,6 +31,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"var/storage/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "913dc3d7a5a1af0d2b044c5ac3a16e2f851d7380"
|
||||
|
||||
@@ -21,14 +21,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/dev/web_loader.yaml": {
|
||||
"contents": [
|
||||
"web_loader:",
|
||||
" disableCache: true",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/web_loader.yaml": {
|
||||
"contents": [
|
||||
"web_loader:",
|
||||
@@ -38,6 +30,14 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/dev/web_loader.yaml": {
|
||||
"contents": [
|
||||
"web_loader:",
|
||||
" disableCache: true",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "b112347eb64f7c47ec375c42dfe32489d2687b95"
|
||||
|
||||
@@ -17,6 +17,27 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/routes/mailxpert_apibundle.yaml": {
|
||||
"contents": [
|
||||
"mx_api:",
|
||||
" resource: '@MailxpertAPIBundle/Resources/config/routing.xml'",
|
||||
" type: xml",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/mailxpert_apibundle.yaml": {
|
||||
"contents": [
|
||||
"mailxpert_api:",
|
||||
" access_token_class: App\\Entity\\AccessToken",
|
||||
" oauth:",
|
||||
" client_id: '%env(MAILXPERT_CLIENT_ID)%'",
|
||||
" client_secret: '%env(MAILXPERT_CLIENT_SECRET)%'",
|
||||
" redirect_url: 'http://example.com/mx/oauth/code'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/AccessToken.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -42,27 +63,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/mailxpert_apibundle.yaml": {
|
||||
"contents": [
|
||||
"mx_api:",
|
||||
" resource: '@MailxpertAPIBundle/Resources/config/routing.xml'",
|
||||
" type: xml",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/mailxpert_apibundle.yaml": {
|
||||
"contents": [
|
||||
"mailxpert_api:",
|
||||
" access_token_class: App\\Entity\\AccessToken",
|
||||
" oauth:",
|
||||
" client_id: '%env(MAILXPERT_CLIENT_ID)%'",
|
||||
" client_secret: '%env(MAILXPERT_CLIENT_SECRET)%'",
|
||||
" redirect_url: 'http://example.com/mx/oauth/code'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "c5ebe490e51efb3c4397ab64207845a36cf209b0"
|
||||
|
||||
@@ -16,13 +16,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Entity/.gitignore": {
|
||||
"contents": [
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/mapado_rest_client_sdk.yaml": {
|
||||
"contents": [
|
||||
"mapado_rest_client_sdk:",
|
||||
@@ -34,6 +27,13 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/.gitignore": {
|
||||
"contents": [
|
||||
"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "78a3b4f36cb126099ac4bcd08b5276313d4c3ed1"
|
||||
|
||||
+158
-158
@@ -20,6 +20,15 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/routes/ticketing.yaml": {
|
||||
"contents": [
|
||||
"ticketing:",
|
||||
" resource: '@TicketingBundle/Resources/config/routing/routes.yaml'",
|
||||
" prefix: /ticket",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Repository/TicketKeywordRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -47,87 +56,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Repository/TicketCategoryRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Repository;",
|
||||
"",
|
||||
"use App\\Entity\\TicketCategory;",
|
||||
"use Symfony\\Bridge\\Doctrine\\RegistryInterface;",
|
||||
"use Maps_red\\TicketingBundle\\Repository\\TicketCategoryRepository as BaseTicketCategoryRepository;",
|
||||
"",
|
||||
"/**",
|
||||
" * @method TicketCategory|null find($id, $lockMode = null, $lockVersion = null)",
|
||||
" * @method TicketCategory|null findOneBy(array $criteria, array $orderBy = null)",
|
||||
" * @method TicketCategory[] findAll()",
|
||||
" * @method TicketCategory[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)",
|
||||
" */",
|
||||
"class TicketCategoryRepository extends BaseTicketCategoryRepository",
|
||||
"{",
|
||||
" public function __construct(RegistryInterface $registry)",
|
||||
" {",
|
||||
" parent::__construct($registry, TicketCategory::class);",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Repository/TicketStatusHistoryRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Repository;",
|
||||
"",
|
||||
"use App\\Entity\\TicketStatusHistory;",
|
||||
"use Symfony\\Bridge\\Doctrine\\RegistryInterface;",
|
||||
"use Maps_red\\TicketingBundle\\Repository\\TicketStatusHistoryRepository as BaseTicketStatusHistoryRepository;",
|
||||
"",
|
||||
"/**",
|
||||
" * @method TicketStatusHistory|null find($id, $lockMode = null, $lockVersion = null)",
|
||||
" * @method TicketStatusHistory|null findOneBy(array $criteria, array $orderBy = null)",
|
||||
" * @method TicketStatusHistory[] findAll()",
|
||||
" * @method TicketStatusHistory[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)",
|
||||
" */",
|
||||
"class TicketStatusHistoryRepository extends BaseTicketStatusHistoryRepository",
|
||||
"{",
|
||||
" public function __construct(RegistryInterface $registry)",
|
||||
" {",
|
||||
" parent::__construct($registry, TicketStatusHistory::class);",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Repository/TicketHistoryRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Repository;",
|
||||
"",
|
||||
"use App\\Entity\\TicketHistory;",
|
||||
"use Symfony\\Bridge\\Doctrine\\RegistryInterface;",
|
||||
"use Maps_red\\TicketingBundle\\Repository\\TicketHistoryRepository as BaseTicketHistoryRepository;",
|
||||
"",
|
||||
"/**",
|
||||
" * @method TicketHistory|null find($id, $lockMode = null, $lockVersion = null)",
|
||||
" * @method TicketHistory|null findOneBy(array $criteria, array $orderBy = null)",
|
||||
" * @method TicketHistory[] findAll()",
|
||||
" * @method TicketHistory[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)",
|
||||
" */",
|
||||
"class TicketHistoryRepository extends BaseTicketHistoryRepository",
|
||||
"{",
|
||||
" public function __construct(RegistryInterface $registry)",
|
||||
" {",
|
||||
" parent::__construct($registry, TicketHistory::class);",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Repository/TicketPriorityRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -155,54 +83,27 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Repository/TicketRepository.php": {
|
||||
"src/Repository/TicketStatusHistoryRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Repository;",
|
||||
"",
|
||||
"use App\\Entity\\Ticket;",
|
||||
"use App\\Entity\\TicketStatusHistory;",
|
||||
"use Symfony\\Bridge\\Doctrine\\RegistryInterface;",
|
||||
"use Maps_red\\TicketingBundle\\Repository\\TicketRepository as BaseTicketRepository;",
|
||||
"use Maps_red\\TicketingBundle\\Repository\\TicketStatusHistoryRepository as BaseTicketStatusHistoryRepository;",
|
||||
"",
|
||||
"/**",
|
||||
" * @method Ticket|null find($id, $lockMode = null, $lockVersion = null)",
|
||||
" * @method Ticket|null findOneBy(array $criteria, array $orderBy = null)",
|
||||
" * @method Ticket[] findAll()",
|
||||
" * @method Ticket[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)",
|
||||
" * @method TicketStatusHistory|null find($id, $lockMode = null, $lockVersion = null)",
|
||||
" * @method TicketStatusHistory|null findOneBy(array $criteria, array $orderBy = null)",
|
||||
" * @method TicketStatusHistory[] findAll()",
|
||||
" * @method TicketStatusHistory[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)",
|
||||
" */",
|
||||
"class TicketRepository extends BaseTicketRepository",
|
||||
"class TicketStatusHistoryRepository extends BaseTicketStatusHistoryRepository",
|
||||
"{",
|
||||
" public function __construct(RegistryInterface $registry)",
|
||||
" {",
|
||||
" parent::__construct($registry, Ticket::class);",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Repository/TicketCommentRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Repository;",
|
||||
"",
|
||||
"use App\\Entity\\TicketComment;",
|
||||
"use Symfony\\Bridge\\Doctrine\\RegistryInterface;",
|
||||
"use Maps_red\\TicketingBundle\\Repository\\TicketCommentRepository as BaseTicketCommentRepository;",
|
||||
"",
|
||||
"/**",
|
||||
" * @method TicketComment|null find($id, $lockMode = null, $lockVersion = null)",
|
||||
" * @method TicketComment|null findOneBy(array $criteria, array $orderBy = null)",
|
||||
" * @method TicketComment[] findAll()",
|
||||
" * @method TicketComment[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)",
|
||||
" */",
|
||||
"class TicketCommentRepository extends BaseTicketCommentRepository",
|
||||
"{",
|
||||
" public function __construct(RegistryInterface $registry)",
|
||||
" {",
|
||||
" parent::__construct($registry, TicketComment::class);",
|
||||
" parent::__construct($registry, TicketStatusHistory::class);",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
@@ -236,38 +137,127 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/TicketStatusHistory.php": {
|
||||
"src/Repository/TicketHistoryRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"namespace App\\Repository;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use Maps_red\\TicketingBundle\\Entity\\TicketStatusHistory as BaseTicketStatusHistory;",
|
||||
"use App\\Entity\\TicketHistory;",
|
||||
"use Symfony\\Bridge\\Doctrine\\RegistryInterface;",
|
||||
"use Maps_red\\TicketingBundle\\Repository\\TicketHistoryRepository as BaseTicketHistoryRepository;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity(repositoryClass=\"App\\Repository\\TicketStatusHistoryRepository\")",
|
||||
" * @method TicketHistory|null find($id, $lockMode = null, $lockVersion = null)",
|
||||
" * @method TicketHistory|null findOneBy(array $criteria, array $orderBy = null)",
|
||||
" * @method TicketHistory[] findAll()",
|
||||
" * @method TicketHistory[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)",
|
||||
" */",
|
||||
"class TicketStatusHistory extends BaseTicketStatusHistory",
|
||||
"class TicketHistoryRepository extends BaseTicketHistoryRepository",
|
||||
"{",
|
||||
" public function __construct(RegistryInterface $registry)",
|
||||
" {",
|
||||
" parent::__construct($registry, TicketHistory::class);",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/TicketPriority.php": {
|
||||
"src/Repository/TicketCommentRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Repository;",
|
||||
"",
|
||||
"use App\\Entity\\TicketComment;",
|
||||
"use Symfony\\Bridge\\Doctrine\\RegistryInterface;",
|
||||
"use Maps_red\\TicketingBundle\\Repository\\TicketCommentRepository as BaseTicketCommentRepository;",
|
||||
"",
|
||||
"/**",
|
||||
" * @method TicketComment|null find($id, $lockMode = null, $lockVersion = null)",
|
||||
" * @method TicketComment|null findOneBy(array $criteria, array $orderBy = null)",
|
||||
" * @method TicketComment[] findAll()",
|
||||
" * @method TicketComment[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)",
|
||||
" */",
|
||||
"class TicketCommentRepository extends BaseTicketCommentRepository",
|
||||
"{",
|
||||
" public function __construct(RegistryInterface $registry)",
|
||||
" {",
|
||||
" parent::__construct($registry, TicketComment::class);",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Repository/TicketRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Repository;",
|
||||
"",
|
||||
"use App\\Entity\\Ticket;",
|
||||
"use Symfony\\Bridge\\Doctrine\\RegistryInterface;",
|
||||
"use Maps_red\\TicketingBundle\\Repository\\TicketRepository as BaseTicketRepository;",
|
||||
"",
|
||||
"/**",
|
||||
" * @method Ticket|null find($id, $lockMode = null, $lockVersion = null)",
|
||||
" * @method Ticket|null findOneBy(array $criteria, array $orderBy = null)",
|
||||
" * @method Ticket[] findAll()",
|
||||
" * @method Ticket[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)",
|
||||
" */",
|
||||
"class TicketRepository extends BaseTicketRepository",
|
||||
"{",
|
||||
" public function __construct(RegistryInterface $registry)",
|
||||
" {",
|
||||
" parent::__construct($registry, Ticket::class);",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Repository/TicketCategoryRepository.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Repository;",
|
||||
"",
|
||||
"use App\\Entity\\TicketCategory;",
|
||||
"use Symfony\\Bridge\\Doctrine\\RegistryInterface;",
|
||||
"use Maps_red\\TicketingBundle\\Repository\\TicketCategoryRepository as BaseTicketCategoryRepository;",
|
||||
"",
|
||||
"/**",
|
||||
" * @method TicketCategory|null find($id, $lockMode = null, $lockVersion = null)",
|
||||
" * @method TicketCategory|null findOneBy(array $criteria, array $orderBy = null)",
|
||||
" * @method TicketCategory[] findAll()",
|
||||
" * @method TicketCategory[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)",
|
||||
" */",
|
||||
"class TicketCategoryRepository extends BaseTicketCategoryRepository",
|
||||
"{",
|
||||
" public function __construct(RegistryInterface $registry)",
|
||||
" {",
|
||||
" parent::__construct($registry, TicketCategory::class);",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/TicketKeyword.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use Maps_red\\TicketingBundle\\Entity\\TicketPriority as BaseTicketPriority;",
|
||||
"use Maps_red\\TicketingBundle\\Entity\\TicketKeyword as BaseTicketKeyword;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity(repositoryClass=\"App\\Repository\\TicketPriorityRepository\")",
|
||||
" * @ORM\\Entity(repositoryClass=\"App\\Repository\\TicketKeywordRepository\")",
|
||||
" */",
|
||||
"class TicketPriority extends BaseTicketPriority",
|
||||
"class TicketKeyword extends BaseTicketKeyword",
|
||||
"{",
|
||||
"}",
|
||||
""
|
||||
@@ -293,19 +283,38 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/TicketComment.php": {
|
||||
"src/Entity/TicketPriority.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use Maps_red\\TicketingBundle\\Entity\\TicketComment as BaseTicketComment;",
|
||||
"use Maps_red\\TicketingBundle\\Entity\\TicketPriority as BaseTicketPriority;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity(repositoryClass=\"App\\Repository\\TicketCommentRepository\")",
|
||||
" * @ORM\\Entity(repositoryClass=\"App\\Repository\\TicketPriorityRepository\")",
|
||||
" */",
|
||||
"class TicketComment extends BaseTicketComment",
|
||||
"class TicketPriority extends BaseTicketPriority",
|
||||
"{",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/TicketStatusHistory.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use Maps_red\\TicketingBundle\\Entity\\TicketStatusHistory as BaseTicketStatusHistory;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity(repositoryClass=\"App\\Repository\\TicketStatusHistoryRepository\")",
|
||||
" */",
|
||||
"class TicketStatusHistory extends BaseTicketStatusHistory",
|
||||
"{",
|
||||
"}",
|
||||
""
|
||||
@@ -331,25 +340,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/Ticket.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use Maps_red\\TicketingBundle\\Entity\\Ticket as BaseTicket;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity(repositoryClass=\"App\\Repository\\TicketRepository\")",
|
||||
" */",
|
||||
"class Ticket extends BaseTicket",
|
||||
"{",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/TicketCategory.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -369,30 +359,40 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/TicketKeyword.php": {
|
||||
"src/Entity/Ticket.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use Maps_red\\TicketingBundle\\Entity\\TicketKeyword as BaseTicketKeyword;",
|
||||
"use Maps_red\\TicketingBundle\\Entity\\Ticket as BaseTicket;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity(repositoryClass=\"App\\Repository\\TicketKeywordRepository\")",
|
||||
" * @ORM\\Entity(repositoryClass=\"App\\Repository\\TicketRepository\")",
|
||||
" */",
|
||||
"class TicketKeyword extends BaseTicketKeyword",
|
||||
"class Ticket extends BaseTicket",
|
||||
"{",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/ticketing.yaml": {
|
||||
"src/Entity/TicketComment.php": {
|
||||
"contents": [
|
||||
"ticketing:",
|
||||
" resource: '@TicketingBundle/Resources/config/routing/routes.yaml'",
|
||||
" prefix: /ticket",
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use Maps_red\\TicketingBundle\\Entity\\TicketComment as BaseTicketComment;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity(repositoryClass=\"App\\Repository\\TicketCommentRepository\")",
|
||||
" */",
|
||||
"class TicketComment extends BaseTicketComment",
|
||||
"{",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
|
||||
@@ -21,26 +21,6 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"src/Entity/Media.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use MediaMonks\\SonataMediaBundle\\Entity\\Media as BaseMedia;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity(repositoryClass=\"MediaMonks\\SonataMediaBundle\\Repository\\MediaRepository\")",
|
||||
" * @ORM\\Table",
|
||||
" */",
|
||||
"class Media extends BaseMedia",
|
||||
"{",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/mediamonks_sonata_media.yaml": {
|
||||
"contents": [
|
||||
"mediamonks_sonata_media_admin:",
|
||||
@@ -62,6 +42,26 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/Media.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use MediaMonks\\SonataMediaBundle\\Entity\\Media as BaseMedia;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity(repositoryClass=\"MediaMonks\\SonataMediaBundle\\Repository\\MediaRepository\")",
|
||||
" * @ORM\\Table",
|
||||
" */",
|
||||
"class Media extends BaseMedia",
|
||||
"{",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "4b7d6c885c1ee9912186a9c65f3e439114135add"
|
||||
|
||||
@@ -13,17 +13,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"docs/index.md": {
|
||||
"contents": [
|
||||
"# Documentation",
|
||||
"",
|
||||
"Your documentation is now ready and you can start working on it.",
|
||||
"",
|
||||
"[Documentation of the bundle](https://github.com/mobizel/markdown-docs-bundle/blob/master/docs/index.md)",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/mobizel_markdown_docs.yaml": {
|
||||
"contents": [
|
||||
"_mobizel_markdowns:",
|
||||
@@ -40,6 +29,17 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"docs/index.md": {
|
||||
"contents": [
|
||||
"# Documentation",
|
||||
"",
|
||||
"Your documentation is now ready and you can start working on it.",
|
||||
"",
|
||||
"[Documentation of the bundle](https://github.com/mobizel/markdown-docs-bundle/blob/master/docs/index.md)",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "49f06a1b3ba3a8e6e2a34d75fbb2572048b5d73a"
|
||||
|
||||
@@ -13,17 +13,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"docs/index.md": {
|
||||
"contents": [
|
||||
"# Documentation",
|
||||
"",
|
||||
"Your documentation is now ready and you can start working on it.",
|
||||
"",
|
||||
"[Documentation of the bundle](https://github.com/mobizel/markdown-docs-bundle/blob/master/docs/index.md)",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/mobizel_markdown_docs.yaml": {
|
||||
"contents": [
|
||||
"_mobizel_markdowns:",
|
||||
@@ -48,6 +37,17 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"docs/index.md": {
|
||||
"contents": [
|
||||
"# Documentation",
|
||||
"",
|
||||
"Your documentation is now ready and you can start working on it.",
|
||||
"",
|
||||
"[Documentation of the bundle](https://github.com/mobizel/markdown-docs-bundle/blob/master/docs/index.md)",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "41fcd3258e073d749c6366d86d662eeb2e03b184"
|
||||
|
||||
+34
-34
@@ -13,36 +13,12 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Entity/AttributeValue.php": {
|
||||
"config/packages/msgphp_eav.yaml": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use MsgPhp\\Eav\\AttributeValue as BaseAttributeValue;",
|
||||
"use MsgPhp\\Eav\\AttributeValueId;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity()",
|
||||
" */",
|
||||
"class AttributeValue extends BaseAttributeValue",
|
||||
"{",
|
||||
" /** @ORM\\Id() @ORM\\GeneratedValue() @ORM\\Column(type=\"msgphp_attribute_value_id\", length=191) */",
|
||||
" private $id;",
|
||||
"",
|
||||
" public function __construct(AttributeValueId $id, Attribute $attribute, $value)",
|
||||
" {",
|
||||
" parent::__construct($attribute, $value);",
|
||||
"",
|
||||
" $this->id = $id;",
|
||||
" }",
|
||||
"",
|
||||
" public function getId(): AttributeValueId",
|
||||
" {",
|
||||
" return $this->id;",
|
||||
" }",
|
||||
"}",
|
||||
"msgphp_eav:",
|
||||
" class_mapping:",
|
||||
" MsgPhp\\Eav\\Attribute: App\\Entity\\Attribute",
|
||||
" MsgPhp\\Eav\\AttributeValue: App\\Entity\\AttributeValue",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
@@ -79,12 +55,36 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/msgphp_eav.yaml": {
|
||||
"src/Entity/AttributeValue.php": {
|
||||
"contents": [
|
||||
"msgphp_eav:",
|
||||
" class_mapping:",
|
||||
" MsgPhp\\Eav\\Attribute: App\\Entity\\Attribute",
|
||||
" MsgPhp\\Eav\\AttributeValue: App\\Entity\\AttributeValue",
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use MsgPhp\\Eav\\AttributeValue as BaseAttributeValue;",
|
||||
"use MsgPhp\\Eav\\AttributeValueId;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity()",
|
||||
" */",
|
||||
"class AttributeValue extends BaseAttributeValue",
|
||||
"{",
|
||||
" /** @ORM\\Id() @ORM\\GeneratedValue() @ORM\\Column(type=\"msgphp_attribute_value_id\", length=191) */",
|
||||
" private $id;",
|
||||
"",
|
||||
" public function __construct(AttributeValueId $id, Attribute $attribute, $value)",
|
||||
" {",
|
||||
" parent::__construct($attribute, $value);",
|
||||
"",
|
||||
" $this->id = $id;",
|
||||
" }",
|
||||
"",
|
||||
" public function getId(): AttributeValueId",
|
||||
" {",
|
||||
" return $this->id;",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
|
||||
@@ -19,6 +19,15 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/msgphp_user.yaml": {
|
||||
"contents": [
|
||||
"msgphp_user:",
|
||||
" class_mapping:",
|
||||
" MsgPhp\\User\\User: App\\Entity\\User",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/User.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -50,15 +59,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/msgphp_user.yaml": {
|
||||
"contents": [
|
||||
"msgphp_user:",
|
||||
" class_mapping:",
|
||||
" MsgPhp\\User\\User: App\\Entity\\User",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "ba0713a124b0716cce44f2989fd31a20945318ba"
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -16,6 +16,14 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/nedac_sylius_minimum_order_value_plugin.yaml": {
|
||||
"contents": [
|
||||
"imports:",
|
||||
" - { resource: \"@NedacSyliusMinimumOrderValuePlugin/Resources/config/config.yaml\" }",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/Channel/Channel.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -41,14 +49,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/nedac_sylius_minimum_order_value_plugin.yaml": {
|
||||
"contents": [
|
||||
"imports:",
|
||||
" - { resource: \"@NedacSyliusMinimumOrderValuePlugin/Resources/config/config.yaml\" }",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "51c9987f3bd93cdcc1d2c8d9bf38bfbde706a63c"
|
||||
|
||||
+167
-167
@@ -38,6 +38,173 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/routes/networking_init_cms.yaml": {
|
||||
"contents": [
|
||||
"networking_init_cms:",
|
||||
" resource: \"@NetworkingInitCmsBundle/Resources/config/routing/routing.yaml\"",
|
||||
" prefix: /",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/networking_init_cms.yaml": {
|
||||
"contents": [
|
||||
"imports:",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/doctrine.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/fos_ck_editor.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/fos_user.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/mopa_bootstrap.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/oneup_flysystem.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/oneup_uploader.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_admin.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_block.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_core.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_doctrine_admin.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_formatter.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_media.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_notification.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_user.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/stof_doctrine_extensions.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/symfony_cmf_routing_extra.yaml\" }",
|
||||
"# Default security configuration",
|
||||
"# - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/security.yaml\" }",
|
||||
"",
|
||||
"# Set up the serializer to read config file for App Page and User entities",
|
||||
"jms_serializer:",
|
||||
" metadata:",
|
||||
" directories:",
|
||||
" NetworkingSonataMediaBundle:",
|
||||
" namespace_prefix: \"Sonata\\\\MediaBundle\"",
|
||||
" path: \"@NetworkingInitCmsBundle/Resources/config/serializer\"",
|
||||
" app:",
|
||||
" namespace_prefix: \"App\"",
|
||||
" path: \"%kernel.project_dir%/config/serializer\"",
|
||||
"",
|
||||
"",
|
||||
"networking_init_cms:",
|
||||
" #Base classes to be used for the page and user entities",
|
||||
" class:",
|
||||
" page: \"App\\\\Entity\\\\Page\"",
|
||||
" user: \"App\\\\Entity\\\\User\"",
|
||||
"",
|
||||
" # Bootstrap some template settings to get you started",
|
||||
" templates:",
|
||||
" 'app_single_column':",
|
||||
" template: \"@NetworkingInitCms/sandbox/page/one_column.html.twig\"",
|
||||
" name: \"Single Column\"",
|
||||
" icon: \"bundles/networkinginitcms/img/template_header_one_column.png\"",
|
||||
" zones:",
|
||||
" - { name: header, class: 'col-md-12' }",
|
||||
" - { name: main_content, class: 'col-md-12'}",
|
||||
" 'app_two_column':",
|
||||
" template: \"@NetworkingInitCms/sandbox/page/two_column.html.twig\"",
|
||||
" name: \"Two Column\"",
|
||||
" icon: \"bundles/networkinginitcms/img/template_header_two_column.png\"",
|
||||
" zones:",
|
||||
" - { name: header , class: 'col-md-12'}",
|
||||
" - { name: left , class: 'col-md-3'}",
|
||||
" - { name: right , class: 'col-md-9'}",
|
||||
" cache:",
|
||||
" activate: true #enable for product, false in dev config",
|
||||
"",
|
||||
" # For more information regarding configuration of the CMS Bundle, please visit the following documentation",
|
||||
" # https://github.com/networking/init-cms-bundle/blob/master/doc/configuration.md",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/dev/networking_init_cms.yaml": {
|
||||
"contents": [
|
||||
"networking_init_cms:",
|
||||
" cache:",
|
||||
" activate: false",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"serializer/Entity.Page.yaml": {
|
||||
"contents": [
|
||||
"App\\Entity\\Page:",
|
||||
" properties:",
|
||||
" id:",
|
||||
" type: integer",
|
||||
" createdAt:",
|
||||
" type: DateTime",
|
||||
" updatedAt:",
|
||||
" type: DateTime",
|
||||
" pageName:",
|
||||
" type: string",
|
||||
" metaTitle:",
|
||||
" type: string",
|
||||
" url:",
|
||||
" type: string",
|
||||
" path:",
|
||||
" type: string",
|
||||
" level:",
|
||||
" type: integer",
|
||||
" metaKeyword:",
|
||||
" type: string",
|
||||
" metaDescription:",
|
||||
" type: string",
|
||||
" parent:",
|
||||
" accessor:",
|
||||
" getter: convertParentToInteger",
|
||||
" type: integer",
|
||||
" alias:",
|
||||
" accessor:",
|
||||
" getter: convertAliasToInteger",
|
||||
" type: integer",
|
||||
" parents:",
|
||||
" accessor:",
|
||||
" getter: convertParentsToArray",
|
||||
" type: array",
|
||||
" children:",
|
||||
" accessor:",
|
||||
" getter: convertChildrenToIntegerArray",
|
||||
" type: array",
|
||||
" allChildren:",
|
||||
" exclude: true",
|
||||
" layoutBlock:",
|
||||
" type: ArrayCollection<Networking\\InitCmsBundle\\Entity\\LayoutBlock>",
|
||||
" menuItem:",
|
||||
" exclude: true",
|
||||
" accessor:",
|
||||
" getter: prepareMenuItemsForSerialization",
|
||||
" type: ArrayCollection<Networking\\InitCmsBundle\\Entity\\MenuItem>",
|
||||
" isHome:",
|
||||
" type: boolean",
|
||||
" status:",
|
||||
" type: string",
|
||||
" visibility:",
|
||||
" type: string",
|
||||
" activeFrom:",
|
||||
" type: DateTime",
|
||||
" activeTo:",
|
||||
" type: DateTime",
|
||||
" locale:",
|
||||
" type: string",
|
||||
" translations:",
|
||||
" accessor:",
|
||||
" getter: convertTranslationsToIntegerArray",
|
||||
" type: array",
|
||||
" originals:",
|
||||
" accessor:",
|
||||
" getter: convertOriginalsToIntegerArray",
|
||||
" type: array",
|
||||
" snapshots:",
|
||||
" exclude: true",
|
||||
" snapshotClassType:",
|
||||
" type: string",
|
||||
" oldTitle:",
|
||||
" exclude: true",
|
||||
" tags:",
|
||||
" exclude: true",
|
||||
" contentRoute:",
|
||||
" exclude: true",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/Page.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -202,173 +369,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/networking_init_cms.yaml": {
|
||||
"contents": [
|
||||
"networking_init_cms:",
|
||||
" resource: \"@NetworkingInitCmsBundle/Resources/config/routing/routing.yaml\"",
|
||||
" prefix: /",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/dev/networking_init_cms.yaml": {
|
||||
"contents": [
|
||||
"networking_init_cms:",
|
||||
" cache:",
|
||||
" activate: false",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/networking_init_cms.yaml": {
|
||||
"contents": [
|
||||
"imports:",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/doctrine.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/fos_ck_editor.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/fos_user.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/mopa_bootstrap.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/oneup_flysystem.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/oneup_uploader.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_admin.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_block.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_core.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_doctrine_admin.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_formatter.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_media.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_notification.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/sonata_user.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/stof_doctrine_extensions.yaml\" }",
|
||||
" - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/symfony_cmf_routing_extra.yaml\" }",
|
||||
"# Default security configuration",
|
||||
"# - { resource: \"@NetworkingInitCmsBundle/Resources/config/cms/security.yaml\" }",
|
||||
"",
|
||||
"# Set up the serializer to read config file for App Page and User entities",
|
||||
"jms_serializer:",
|
||||
" metadata:",
|
||||
" directories:",
|
||||
" NetworkingSonataMediaBundle:",
|
||||
" namespace_prefix: \"Sonata\\\\MediaBundle\"",
|
||||
" path: \"@NetworkingInitCmsBundle/Resources/config/serializer\"",
|
||||
" app:",
|
||||
" namespace_prefix: \"App\"",
|
||||
" path: \"%kernel.project_dir%/config/serializer\"",
|
||||
"",
|
||||
"",
|
||||
"networking_init_cms:",
|
||||
" #Base classes to be used for the page and user entities",
|
||||
" class:",
|
||||
" page: \"App\\\\Entity\\\\Page\"",
|
||||
" user: \"App\\\\Entity\\\\User\"",
|
||||
"",
|
||||
" # Bootstrap some template settings to get you started",
|
||||
" templates:",
|
||||
" 'app_single_column':",
|
||||
" template: \"@NetworkingInitCms/sandbox/page/one_column.html.twig\"",
|
||||
" name: \"Single Column\"",
|
||||
" icon: \"bundles/networkinginitcms/img/template_header_one_column.png\"",
|
||||
" zones:",
|
||||
" - { name: header, class: 'col-md-12' }",
|
||||
" - { name: main_content, class: 'col-md-12'}",
|
||||
" 'app_two_column':",
|
||||
" template: \"@NetworkingInitCms/sandbox/page/two_column.html.twig\"",
|
||||
" name: \"Two Column\"",
|
||||
" icon: \"bundles/networkinginitcms/img/template_header_two_column.png\"",
|
||||
" zones:",
|
||||
" - { name: header , class: 'col-md-12'}",
|
||||
" - { name: left , class: 'col-md-3'}",
|
||||
" - { name: right , class: 'col-md-9'}",
|
||||
" cache:",
|
||||
" activate: true #enable for product, false in dev config",
|
||||
"",
|
||||
" # For more information regarding configuration of the CMS Bundle, please visit the following documentation",
|
||||
" # https://github.com/networking/init-cms-bundle/blob/master/doc/configuration.md",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"serializer/Entity.Page.yaml": {
|
||||
"contents": [
|
||||
"App\\Entity\\Page:",
|
||||
" properties:",
|
||||
" id:",
|
||||
" type: integer",
|
||||
" createdAt:",
|
||||
" type: DateTime",
|
||||
" updatedAt:",
|
||||
" type: DateTime",
|
||||
" pageName:",
|
||||
" type: string",
|
||||
" metaTitle:",
|
||||
" type: string",
|
||||
" url:",
|
||||
" type: string",
|
||||
" path:",
|
||||
" type: string",
|
||||
" level:",
|
||||
" type: integer",
|
||||
" metaKeyword:",
|
||||
" type: string",
|
||||
" metaDescription:",
|
||||
" type: string",
|
||||
" parent:",
|
||||
" accessor:",
|
||||
" getter: convertParentToInteger",
|
||||
" type: integer",
|
||||
" alias:",
|
||||
" accessor:",
|
||||
" getter: convertAliasToInteger",
|
||||
" type: integer",
|
||||
" parents:",
|
||||
" accessor:",
|
||||
" getter: convertParentsToArray",
|
||||
" type: array",
|
||||
" children:",
|
||||
" accessor:",
|
||||
" getter: convertChildrenToIntegerArray",
|
||||
" type: array",
|
||||
" allChildren:",
|
||||
" exclude: true",
|
||||
" layoutBlock:",
|
||||
" type: ArrayCollection<Networking\\InitCmsBundle\\Entity\\LayoutBlock>",
|
||||
" menuItem:",
|
||||
" exclude: true",
|
||||
" accessor:",
|
||||
" getter: prepareMenuItemsForSerialization",
|
||||
" type: ArrayCollection<Networking\\InitCmsBundle\\Entity\\MenuItem>",
|
||||
" isHome:",
|
||||
" type: boolean",
|
||||
" status:",
|
||||
" type: string",
|
||||
" visibility:",
|
||||
" type: string",
|
||||
" activeFrom:",
|
||||
" type: DateTime",
|
||||
" activeTo:",
|
||||
" type: DateTime",
|
||||
" locale:",
|
||||
" type: string",
|
||||
" translations:",
|
||||
" accessor:",
|
||||
" getter: convertTranslationsToIntegerArray",
|
||||
" type: array",
|
||||
" originals:",
|
||||
" accessor:",
|
||||
" getter: convertOriginalsToIntegerArray",
|
||||
" type: array",
|
||||
" snapshots:",
|
||||
" exclude: true",
|
||||
" snapshotClassType:",
|
||||
" type: string",
|
||||
" oldTitle:",
|
||||
" exclude: true",
|
||||
" tags:",
|
||||
" exclude: true",
|
||||
" contentRoute:",
|
||||
" exclude: true",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "bfda6b9bc4c321733c085d065a74aaaca0997ed7"
|
||||
|
||||
@@ -16,6 +16,29 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/routes/nucleos_user.yaml": {
|
||||
"contents": [
|
||||
"nucleos_user:",
|
||||
" resource: \"@NucleosUserBundle/Resources/config/routing/all.xml\"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/nucleos_user.yaml": {
|
||||
"contents": [
|
||||
"nucleos_user:",
|
||||
" firewall_name: main",
|
||||
"",
|
||||
" from_email: '%env(MAIL_SENDER)%'",
|
||||
"",
|
||||
" user_class: 'App\\Entity\\User\\User'",
|
||||
"",
|
||||
" group:",
|
||||
" group_class: 'App\\Entity\\User\\Group'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/User/Group.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -60,29 +83,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/nucleos_user.yaml": {
|
||||
"contents": [
|
||||
"nucleos_user:",
|
||||
" resource: \"@NucleosUserBundle/Resources/config/routing/all.xml\"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/nucleos_user.yaml": {
|
||||
"contents": [
|
||||
"nucleos_user:",
|
||||
" firewall_name: main",
|
||||
"",
|
||||
" from_email: '%env(MAIL_SENDER)%'",
|
||||
"",
|
||||
" user_class: 'App\\Entity\\User\\User'",
|
||||
"",
|
||||
" group:",
|
||||
" group_class: 'App\\Entity\\User\\Group'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "88cca294afe46854e805316dbcde52696c661ce6"
|
||||
|
||||
@@ -13,6 +13,31 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/routes/orbitale_cms.yaml": {
|
||||
"contents": [
|
||||
"orbitale_cms_category:",
|
||||
" resource: \"@OrbitaleCmsBundle/Resources/config/routing/categories.yaml\"",
|
||||
" prefix: /category/",
|
||||
"",
|
||||
"orbitale_cms_page:",
|
||||
" resource: \"@OrbitaleCmsBundle/Resources/config/routing/pages.yaml\"",
|
||||
" prefix: /page/",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/orbitale_cms.yaml": {
|
||||
"contents": [
|
||||
"orbitale_cms:",
|
||||
" page_class: App\\Entity\\Page",
|
||||
" category_class: App\\Entity\\Category",
|
||||
"# Define your layout here if you need a custom layout for your CMS",
|
||||
"# layouts:",
|
||||
"# main: { resource: base.html.twig }",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/Page.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -82,31 +107,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/orbitale_cms.yaml": {
|
||||
"contents": [
|
||||
"orbitale_cms_category:",
|
||||
" resource: \"@OrbitaleCmsBundle/Resources/config/routing/categories.yaml\"",
|
||||
" prefix: /category/",
|
||||
"",
|
||||
"orbitale_cms_page:",
|
||||
" resource: \"@OrbitaleCmsBundle/Resources/config/routing/pages.yaml\"",
|
||||
" prefix: /page/",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/orbitale_cms.yaml": {
|
||||
"contents": [
|
||||
"orbitale_cms:",
|
||||
" page_class: App\\Entity\\Page",
|
||||
" category_class: App\\Entity\\Category",
|
||||
"# Define your layout here if you need a custom layout for your CMS",
|
||||
"# layouts:",
|
||||
"# main: { resource: base.html.twig }",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "069435187e19a4592d1b08b30c24af83ee74f246"
|
||||
|
||||
@@ -21,6 +21,14 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/orbitale_easy_impress.yaml": {
|
||||
"contents": [
|
||||
"easy_impress:",
|
||||
" presentations_dir: '%kernel.project_dir%/config/presentations'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/presentations/home.yaml": {
|
||||
"contents": [
|
||||
"# Read the documentation https://github.com/Orbitale/EasyImpressBundle#yml-reference for more details about yaml options",
|
||||
@@ -41,14 +49,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/orbitale_easy_impress.yaml": {
|
||||
"contents": [
|
||||
"easy_impress:",
|
||||
" presentations_dir: '%kernel.project_dir%/config/presentations'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "d13df16ea1990be70160d21ea4e9a3bcbd974edd"
|
||||
|
||||
@@ -25,12 +25,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/graphql/types/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/graphql.yaml": {
|
||||
"contents": [
|
||||
"overblog_graphql:",
|
||||
@@ -47,6 +41,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/graphql/types/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "7b4f1ce797bc4a2421c4354b7ca462fc5e2e05de"
|
||||
|
||||
@@ -25,12 +25,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/graphql/types/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/graphql.yaml": {
|
||||
"contents": [
|
||||
"overblog_graphql:",
|
||||
@@ -46,6 +40,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/graphql/types/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "b122f3bfcfc0706c617a74afa8510af4799810f6"
|
||||
|
||||
@@ -18,14 +18,6 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/routes/dev/graphql_graphiql.yaml": {
|
||||
"contents": [
|
||||
"overblog_graphql_graphiql:",
|
||||
" resource: \"@OverblogGraphQLBundle/Resources/config/routing/graphiql.yml\"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/graphql.yaml": {
|
||||
"contents": [
|
||||
"overblog_graphql_endpoint:",
|
||||
@@ -34,8 +26,10 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/graphql/types/.gitignore": {
|
||||
"config/routes/dev/graphql_graphiql.yaml": {
|
||||
"contents": [
|
||||
"overblog_graphql_graphiql:",
|
||||
" resource: \"@OverblogGraphQLBundle/Resources/config/routing/graphiql.yml\"",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
@@ -56,6 +50,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/graphql/types/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "3d209565ed43a115454d165b69a752292997f749"
|
||||
|
||||
@@ -16,12 +16,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Consumer/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/old_sound_rabbit_mq.yaml": {
|
||||
"contents": [
|
||||
"old_sound_rabbit_mq:",
|
||||
@@ -42,6 +36,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Consumer/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "ce3ca2e4577270c4f518539aa6b9e878998fcfef"
|
||||
|
||||
@@ -16,6 +16,21 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/fastcgi_daemon.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" App\\FastCGIKernel:",
|
||||
" autowire: true",
|
||||
"",
|
||||
" PHPFastCGI\\FastCGIDaemon\\Driver\\DriverContainer: null",
|
||||
" PHPFastCGI\\FastCGIDaemon\\Command\\DaemonRunCommand:",
|
||||
" arguments: ['@App\\FastCGIKernel', '@PHPFastCGI\\FastCGIDaemon\\Driver\\DriverContainer', 'fastcgi-daemon:run']",
|
||||
" tags:",
|
||||
" - { name: console.command }",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/FastCGIKernel.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -54,21 +69,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/fastcgi_daemon.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" App\\FastCGIKernel:",
|
||||
" autowire: true",
|
||||
"",
|
||||
" PHPFastCGI\\FastCGIDaemon\\Driver\\DriverContainer: null",
|
||||
" PHPFastCGI\\FastCGIDaemon\\Command\\DaemonRunCommand:",
|
||||
" arguments: ['@App\\FastCGIKernel', '@PHPFastCGI\\FastCGIDaemon\\Driver\\DriverContainer', 'fastcgi-daemon:run']",
|
||||
" tags:",
|
||||
" - { name: console.command }",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "2011211eeb0a0c800ca496b090c65d161f5c3ed6"
|
||||
|
||||
@@ -21,30 +21,6 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"Document/DemoDocument.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Document;",
|
||||
"",
|
||||
"use PHPZlc\\Document\\Document;",
|
||||
"",
|
||||
"class DemoDocument extends Document",
|
||||
"{",
|
||||
" public function demoAction()",
|
||||
" {",
|
||||
" $this->add()",
|
||||
" ->setTitle('\u6f14\u793a\u63a5\u53e3')",
|
||||
" ->setUrl('/demo')",
|
||||
" ->setReturnType('html')",
|
||||
" ->setReturn('\u6f14\u793a\u63a5\u53e3')",
|
||||
" ->generate();",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"Document/Config.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -116,6 +92,30 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"Document/DemoDocument.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Document;",
|
||||
"",
|
||||
"use PHPZlc\\Document\\Document;",
|
||||
"",
|
||||
"class DemoDocument extends Document",
|
||||
"{",
|
||||
" public function demoAction()",
|
||||
" {",
|
||||
" $this->add()",
|
||||
" ->setTitle('\u6f14\u793a\u63a5\u53e3')",
|
||||
" ->setUrl('/demo')",
|
||||
" ->setReturnType('html')",
|
||||
" ->setReturn('\u6f14\u793a\u63a5\u53e3')",
|
||||
" ->generate();",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "669453aa86b676874f881655983abb8e1ac357a9"
|
||||
|
||||
@@ -13,6 +13,27 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/routes/pierstoval_character_manager.yaml": {
|
||||
"contents": [
|
||||
"generator_steps:",
|
||||
" resource: \"@PierstovalCharacterManagerBundle/Controller/StepController.php\"",
|
||||
" type: annotation",
|
||||
" prefix: /character_generator/",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/pierstoval_character_manager.yaml": {
|
||||
"contents": [
|
||||
"pierstoval_character_manager:",
|
||||
" character_class: App\\Entity\\Character",
|
||||
" steps:",
|
||||
" step_01:",
|
||||
" action: App\\CharacterGenerator\\Step01",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/CharacterGenerator/Step01.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -64,27 +85,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/pierstoval_character_manager.yaml": {
|
||||
"contents": [
|
||||
"generator_steps:",
|
||||
" resource: \"@PierstovalCharacterManagerBundle/Controller/StepController.php\"",
|
||||
" type: annotation",
|
||||
" prefix: /character_generator/",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/pierstoval_character_manager.yaml": {
|
||||
"contents": [
|
||||
"pierstoval_character_manager:",
|
||||
" character_class: App\\Entity\\Character",
|
||||
" steps:",
|
||||
" step_01:",
|
||||
" action: App\\CharacterGenerator\\Step01",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "f3223cfb6af047c8b9ba13c8491d10d98eb604df"
|
||||
|
||||
@@ -13,6 +13,22 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/prooph_event_store.yaml": {
|
||||
"contents": [
|
||||
"prooph_event_store:",
|
||||
" stores:",
|
||||
" default:",
|
||||
" event_store: 'app.event_store.default'",
|
||||
"",
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" public: false",
|
||||
"",
|
||||
" Prooph\\EventSourcing\\EventStoreIntegration\\AggregateTranslator: null",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Command/CreateEventStreamCommand.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -54,22 +70,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/prooph_event_store.yaml": {
|
||||
"contents": [
|
||||
"prooph_event_store:",
|
||||
" stores:",
|
||||
" default:",
|
||||
" event_store: 'app.event_store.default'",
|
||||
"",
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" public: false",
|
||||
"",
|
||||
" Prooph\\EventSourcing\\EventStoreIntegration\\AggregateTranslator: null",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "a989875619b98a288abc2b636a2b5be36b4833d6"
|
||||
|
||||
@@ -13,12 +13,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Admin/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/sonata_admin.yaml": {
|
||||
"contents": [
|
||||
"admin_area:",
|
||||
@@ -48,6 +42,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Admin/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "0e5931df1732e3dccfba42a20853049e5e9db6ae"
|
||||
|
||||
@@ -13,12 +13,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Admin/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/sonata_admin.yaml": {
|
||||
"contents": [
|
||||
"admin_area:",
|
||||
@@ -50,6 +44,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Admin/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "9909a0cc9b4683a1d98be519a890375d3342a480"
|
||||
|
||||
@@ -13,12 +13,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Admin/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/sonata_admin.yaml": {
|
||||
"contents": [
|
||||
"admin_area:",
|
||||
@@ -48,6 +42,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Admin/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "0e5931df1732e3dccfba42a20853049e5e9db6ae"
|
||||
|
||||
@@ -13,6 +13,19 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/sonata_classification.yaml": {
|
||||
"contents": [
|
||||
"sonata_classification:",
|
||||
" class:",
|
||||
" category: App\\Entity\\SonataClassificationCategory",
|
||||
" collection: App\\Entity\\SonataClassificationCollection",
|
||||
" context: App\\Entity\\SonataClassificationContext",
|
||||
" tag: App\\Entity\\SonataClassificationTag",
|
||||
" media: App\\Entity\\SonataMediaMedia",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/SonataClassificationCategory.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -162,71 +175,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/SonataClassificationTag.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"declare(strict_types=1);",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use JMS\\Serializer\\Annotation as Serializer;",
|
||||
"use Sonata\\ClassificationBundle\\Entity\\BaseTag;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity",
|
||||
" * @ORM\\Table(name=\"classification__tag\")",
|
||||
" * @ORM\\HasLifecycleCallbacks",
|
||||
" */",
|
||||
"class SonataClassificationTag extends BaseTag",
|
||||
"{",
|
||||
" /**",
|
||||
" * @ORM\\Id",
|
||||
" * @ORM\\Column(type=\"integer\")",
|
||||
" * @ORM\\GeneratedValue(strategy=\"AUTO\")",
|
||||
" * // Serializer\\Groups(groups={\"sonata_api_read\", \"sonata_api_write\", \"sonata_search\"})",
|
||||
" *",
|
||||
" * @var int",
|
||||
" */",
|
||||
" protected $id;",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\ManyToOne(",
|
||||
" * targetEntity=\"App\\Entity\\SonataClassificationContext\",",
|
||||
" * cascade={\"persist\"}",
|
||||
" * )",
|
||||
" * @ORM\\JoinColumn(name=\"context\", referencedColumnName=\"id\", nullable=false)",
|
||||
" *",
|
||||
" * @var SonataClassificationContext",
|
||||
" */",
|
||||
" protected $context;",
|
||||
"",
|
||||
" public function getId()",
|
||||
" {",
|
||||
" return $this->id;",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\PrePersist",
|
||||
" */",
|
||||
" public function prePersist(): void",
|
||||
" {",
|
||||
" parent::prePersist();",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\PreUpdate",
|
||||
" */",
|
||||
" public function preUpdate(): void",
|
||||
" {",
|
||||
" parent::preUpdate();",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/SonataClassificationCollection.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -292,15 +240,67 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/sonata_classification.yaml": {
|
||||
"src/Entity/SonataClassificationTag.php": {
|
||||
"contents": [
|
||||
"sonata_classification:",
|
||||
" class:",
|
||||
" category: App\\Entity\\SonataClassificationCategory",
|
||||
" collection: App\\Entity\\SonataClassificationCollection",
|
||||
" context: App\\Entity\\SonataClassificationContext",
|
||||
" tag: App\\Entity\\SonataClassificationTag",
|
||||
" media: App\\Entity\\SonataMediaMedia",
|
||||
"<?php",
|
||||
"",
|
||||
"declare(strict_types=1);",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use JMS\\Serializer\\Annotation as Serializer;",
|
||||
"use Sonata\\ClassificationBundle\\Entity\\BaseTag;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity",
|
||||
" * @ORM\\Table(name=\"classification__tag\")",
|
||||
" * @ORM\\HasLifecycleCallbacks",
|
||||
" */",
|
||||
"class SonataClassificationTag extends BaseTag",
|
||||
"{",
|
||||
" /**",
|
||||
" * @ORM\\Id",
|
||||
" * @ORM\\Column(type=\"integer\")",
|
||||
" * @ORM\\GeneratedValue(strategy=\"AUTO\")",
|
||||
" * // Serializer\\Groups(groups={\"sonata_api_read\", \"sonata_api_write\", \"sonata_search\"})",
|
||||
" *",
|
||||
" * @var int",
|
||||
" */",
|
||||
" protected $id;",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\ManyToOne(",
|
||||
" * targetEntity=\"App\\Entity\\SonataClassificationContext\",",
|
||||
" * cascade={\"persist\"}",
|
||||
" * )",
|
||||
" * @ORM\\JoinColumn(name=\"context\", referencedColumnName=\"id\", nullable=false)",
|
||||
" *",
|
||||
" * @var SonataClassificationContext",
|
||||
" */",
|
||||
" protected $context;",
|
||||
"",
|
||||
" public function getId()",
|
||||
" {",
|
||||
" return $this->id;",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\PrePersist",
|
||||
" */",
|
||||
" public function prePersist(): void",
|
||||
" {",
|
||||
" parent::prePersist();",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\PreUpdate",
|
||||
" */",
|
||||
" public function preUpdate(): void",
|
||||
" {",
|
||||
" parent::preUpdate();",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
|
||||
@@ -8,6 +8,18 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/sonata_media_odm.yaml": {
|
||||
"contents": [
|
||||
"sonata_media:",
|
||||
" class:",
|
||||
" media: App\\Document\\SonataMediaMedia",
|
||||
" gallery: App\\Document\\SonataMediaGallery",
|
||||
" gallery_has_media: App\\Document\\SonataMediaGalleryHasMedia",
|
||||
" db_driver: doctrine_mongodb",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Document/SonataMediaGallery.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -65,6 +77,71 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Document/SonataMediaGalleryHasMedia.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"declare(strict_types=1);",
|
||||
"",
|
||||
"namespace App\\Document;",
|
||||
"",
|
||||
"use Doctrine\\ODM\\MongoDB\\Mapping\\Annotations as MongoDB;",
|
||||
"use JMS\\Serializer\\Annotation as Serializer;",
|
||||
"use Sonata\\MediaBundle\\Document\\BaseGalleryHasMedia;",
|
||||
"",
|
||||
"/**",
|
||||
" * @MongoDB\\Document",
|
||||
" * @MongoDB\\HasLifecycleCallbacks",
|
||||
" */",
|
||||
"class SonataMediaGalleryHasMedia extends BaseGalleryHasMedia",
|
||||
"{",
|
||||
" /**",
|
||||
" * @MongoDB\\Id()",
|
||||
" * @Serializer\\Groups(groups={\"sonata_api_read\", \"sonata_api_write\", \"sonata_search\"})",
|
||||
" */",
|
||||
" protected $id;",
|
||||
"",
|
||||
" /**",
|
||||
" * @MongoDB\\ReferenceOne(",
|
||||
" * targetDocument=\"App\\Document\\SonataMediaMedia\",",
|
||||
" * inversedBy=\"galleryHasMedias\", cascade={\"persist\"}",
|
||||
" * )",
|
||||
" */",
|
||||
" protected $media;",
|
||||
"",
|
||||
" /**",
|
||||
" * @MongoDB\\ReferenceOne(",
|
||||
" * targetDocument=\"App\\Document\\SonataMediaGallery\",",
|
||||
" * inversedBy=\"galleryHasMedias\", cascade={\"persist\"}",
|
||||
" * )",
|
||||
" */",
|
||||
" protected $gallery;",
|
||||
"",
|
||||
" public function getId(): ?int",
|
||||
" {",
|
||||
" return $this->id;",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @MongoDB\\PrePersist",
|
||||
" */",
|
||||
" public function prePersist(): void",
|
||||
" {",
|
||||
" parent::prePersist();",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @MongoDB\\PreUpdate",
|
||||
" */",
|
||||
" public function preUpdate(): void",
|
||||
" {",
|
||||
" parent::preUpdate();",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Document/SonataMediaMedia.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -141,83 +218,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Document/SonataMediaGalleryHasMedia.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"declare(strict_types=1);",
|
||||
"",
|
||||
"namespace App\\Document;",
|
||||
"",
|
||||
"use Doctrine\\ODM\\MongoDB\\Mapping\\Annotations as MongoDB;",
|
||||
"use JMS\\Serializer\\Annotation as Serializer;",
|
||||
"use Sonata\\MediaBundle\\Document\\BaseGalleryHasMedia;",
|
||||
"",
|
||||
"/**",
|
||||
" * @MongoDB\\Document",
|
||||
" * @MongoDB\\HasLifecycleCallbacks",
|
||||
" */",
|
||||
"class SonataMediaGalleryHasMedia extends BaseGalleryHasMedia",
|
||||
"{",
|
||||
" /**",
|
||||
" * @MongoDB\\Id()",
|
||||
" * @Serializer\\Groups(groups={\"sonata_api_read\", \"sonata_api_write\", \"sonata_search\"})",
|
||||
" */",
|
||||
" protected $id;",
|
||||
"",
|
||||
" /**",
|
||||
" * @MongoDB\\ReferenceOne(",
|
||||
" * targetDocument=\"App\\Document\\SonataMediaMedia\",",
|
||||
" * inversedBy=\"galleryHasMedias\", cascade={\"persist\"}",
|
||||
" * )",
|
||||
" */",
|
||||
" protected $media;",
|
||||
"",
|
||||
" /**",
|
||||
" * @MongoDB\\ReferenceOne(",
|
||||
" * targetDocument=\"App\\Document\\SonataMediaGallery\",",
|
||||
" * inversedBy=\"galleryHasMedias\", cascade={\"persist\"}",
|
||||
" * )",
|
||||
" */",
|
||||
" protected $gallery;",
|
||||
"",
|
||||
" public function getId(): ?int",
|
||||
" {",
|
||||
" return $this->id;",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @MongoDB\\PrePersist",
|
||||
" */",
|
||||
" public function prePersist(): void",
|
||||
" {",
|
||||
" parent::prePersist();",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @MongoDB\\PreUpdate",
|
||||
" */",
|
||||
" public function preUpdate(): void",
|
||||
" {",
|
||||
" parent::preUpdate();",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/sonata_media_odm.yaml": {
|
||||
"contents": [
|
||||
"sonata_media:",
|
||||
" class:",
|
||||
" media: App\\Document\\SonataMediaMedia",
|
||||
" gallery: App\\Document\\SonataMediaGallery",
|
||||
" gallery_has_media: App\\Document\\SonataMediaGalleryHasMedia",
|
||||
" db_driver: doctrine_mongodb",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "bd1764c3667baf85def26734108af1007bc9fed2"
|
||||
|
||||
@@ -12,6 +12,19 @@
|
||||
]
|
||||
},
|
||||
"files": {
|
||||
"config/packages/sonata_media_orm.yaml": {
|
||||
"contents": [
|
||||
"sonata_media:",
|
||||
" class:",
|
||||
" media: App\\Entity\\SonataMediaMedia",
|
||||
" gallery: App\\Entity\\SonataMediaGallery",
|
||||
" gallery_has_media: App\\Entity\\SonataMediaGalleryHasMedia",
|
||||
" category: App\\Entity\\SonataClassificationCategory",
|
||||
" db_driver: doctrine_orm",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/SonataMediaGallery.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -77,83 +90,6 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/SonataMediaMedia.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"declare(strict_types=1);",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use JMS\\Serializer\\Annotation as Serializer;",
|
||||
"use Sonata\\MediaBundle\\Entity\\BaseMedia;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity",
|
||||
" * @ORM\\Table(name=\"media__media\")",
|
||||
" * @ORM\\HasLifecycleCallbacks",
|
||||
" */",
|
||||
"class SonataMediaMedia extends BaseMedia",
|
||||
"{",
|
||||
" /**",
|
||||
" * @ORM\\Id",
|
||||
" * @ORM\\Column(type=\"integer\")",
|
||||
" * @ORM\\GeneratedValue(strategy=\"AUTO\")",
|
||||
" * @Serializer\\Groups(groups={\"sonata_api_read\", \"sonata_api_write\", \"sonata_search\"})",
|
||||
" *",
|
||||
" * @var int",
|
||||
" */",
|
||||
" protected $id;",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\OneToMany(",
|
||||
" * targetEntity=\"App\\Entity\\SonataMediaGalleryHasMedia\",",
|
||||
" * mappedBy=\"media\", cascade={\"persist\"}, orphanRemoval=false",
|
||||
" * )",
|
||||
" *",
|
||||
" * @var SonataMediaGalleryHasMedia[]",
|
||||
" */",
|
||||
" protected $galleryHasMedias;",
|
||||
"",
|
||||
" /**",
|
||||
" * Fix annotations if you use classification-bundle.",
|
||||
" *",
|
||||
" * // ORM\\ManyToOne(",
|
||||
" * targetEntity=\"App\\Entity\\SonataClassificationCategory\",",
|
||||
" * cascade={\"persist\"}",
|
||||
" * )",
|
||||
" * // ORM\\JoinColumn(name=\"category_id\", referencedColumnName=\"id\", onDelete=\"SET NULL\")",
|
||||
" *",
|
||||
" * @var SonataClassificationCategory",
|
||||
" */",
|
||||
" protected $category;",
|
||||
"",
|
||||
" public function getId()",
|
||||
" {",
|
||||
" return $this->id;",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\PrePersist",
|
||||
" */",
|
||||
" public function prePersist(): void",
|
||||
" {",
|
||||
" parent::prePersist();",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\PreUpdate",
|
||||
" */",
|
||||
" public function preUpdate(): void",
|
||||
" {",
|
||||
" parent::preUpdate();",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/SonataMediaGalleryHasMedia.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -230,15 +166,79 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/sonata_media_orm.yaml": {
|
||||
"src/Entity/SonataMediaMedia.php": {
|
||||
"contents": [
|
||||
"sonata_media:",
|
||||
" class:",
|
||||
" media: App\\Entity\\SonataMediaMedia",
|
||||
" gallery: App\\Entity\\SonataMediaGallery",
|
||||
" gallery_has_media: App\\Entity\\SonataMediaGalleryHasMedia",
|
||||
" category: App\\Entity\\SonataClassificationCategory",
|
||||
" db_driver: doctrine_orm",
|
||||
"<?php",
|
||||
"",
|
||||
"declare(strict_types=1);",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use JMS\\Serializer\\Annotation as Serializer;",
|
||||
"use Sonata\\MediaBundle\\Entity\\BaseMedia;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity",
|
||||
" * @ORM\\Table(name=\"media__media\")",
|
||||
" * @ORM\\HasLifecycleCallbacks",
|
||||
" */",
|
||||
"class SonataMediaMedia extends BaseMedia",
|
||||
"{",
|
||||
" /**",
|
||||
" * @ORM\\Id",
|
||||
" * @ORM\\Column(type=\"integer\")",
|
||||
" * @ORM\\GeneratedValue(strategy=\"AUTO\")",
|
||||
" * @Serializer\\Groups(groups={\"sonata_api_read\", \"sonata_api_write\", \"sonata_search\"})",
|
||||
" *",
|
||||
" * @var int",
|
||||
" */",
|
||||
" protected $id;",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\OneToMany(",
|
||||
" * targetEntity=\"App\\Entity\\SonataMediaGalleryHasMedia\",",
|
||||
" * mappedBy=\"media\", cascade={\"persist\"}, orphanRemoval=false",
|
||||
" * )",
|
||||
" *",
|
||||
" * @var SonataMediaGalleryHasMedia[]",
|
||||
" */",
|
||||
" protected $galleryHasMedias;",
|
||||
"",
|
||||
" /**",
|
||||
" * Fix annotations if you use classification-bundle.",
|
||||
" *",
|
||||
" * // ORM\\ManyToOne(",
|
||||
" * targetEntity=\"App\\Entity\\SonataClassificationCategory\",",
|
||||
" * cascade={\"persist\"}",
|
||||
" * )",
|
||||
" * // ORM\\JoinColumn(name=\"category_id\", referencedColumnName=\"id\", onDelete=\"SET NULL\")",
|
||||
" *",
|
||||
" * @var SonataClassificationCategory",
|
||||
" */",
|
||||
" protected $category;",
|
||||
"",
|
||||
" public function getId()",
|
||||
" {",
|
||||
" return $this->id;",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\PrePersist",
|
||||
" */",
|
||||
" public function prePersist(): void",
|
||||
" {",
|
||||
" parent::prePersist();",
|
||||
" }",
|
||||
"",
|
||||
" /**",
|
||||
" * @ORM\\PreUpdate",
|
||||
" */",
|
||||
" public function preUpdate(): void",
|
||||
" {",
|
||||
" parent::preUpdate();",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
|
||||
@@ -8,6 +8,18 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/sonata_notification_orm.yaml": {
|
||||
"contents": [
|
||||
"sonata_notification:",
|
||||
" backend: sonata.notification.backend.doctrine",
|
||||
" backends:",
|
||||
" doctrine: null",
|
||||
" class:",
|
||||
" message: App\\Entity\\SonataNotificationMessage",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/SonataNotificationMessage.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -44,18 +56,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/sonata_notification_orm.yaml": {
|
||||
"contents": [
|
||||
"sonata_notification:",
|
||||
" backend: sonata.notification.backend.doctrine",
|
||||
" backends:",
|
||||
" doctrine: null",
|
||||
" class:",
|
||||
" message: App\\Entity\\SonataNotificationMessage",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "c4c7db6d4949a6cc819270c4c2f0f00eeffe09f8"
|
||||
|
||||
+105
-105
@@ -13,6 +13,111 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/routes/sonata_page.yaml": {
|
||||
"contents": [
|
||||
"#sonata_page_api:",
|
||||
"# resource: '@SonataPageBundle/Resources/config/routing/api.xml'",
|
||||
"# prefix: /",
|
||||
"",
|
||||
"#sonata_page_cache:",
|
||||
"# resource: '@SonataPageBundle/Resources/config/routing/cache.xml'",
|
||||
"# prefix: /",
|
||||
"",
|
||||
"sonata_page_exceptions:",
|
||||
" resource: '@SonataPageBundle/Resources/config/routing/exceptions.xml'",
|
||||
" prefix: /",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/sonata_page.yaml": {
|
||||
"contents": [
|
||||
"sonata_block:",
|
||||
" context_manager: sonata.page.block.context_manager",
|
||||
" default_contexts: [sonata_page_bundle]",
|
||||
"",
|
||||
"sonata_admin:",
|
||||
" assets:",
|
||||
" extra_javascripts:",
|
||||
" - bundles/sonatapage/sonata-page.back.min.js",
|
||||
" extra_stylesheets:",
|
||||
" - bundles/sonatapage/sonata-page.back.min.css",
|
||||
"",
|
||||
"sonata_page:",
|
||||
" slugify_service: sonata.page.slugify.cocur",
|
||||
" multisite: host",
|
||||
" use_streamed_response: false",
|
||||
"",
|
||||
" router_auto_register:",
|
||||
" enabled: true",
|
||||
" priority: 150",
|
||||
" ignore_route_patterns:",
|
||||
" - ^(.*)admin(.*) # ignore admin route, ie route containing 'admin'",
|
||||
" - ^_(.*) # ignore symfony routes",
|
||||
" ignore_routes:",
|
||||
" - sonata_page_cache_esi",
|
||||
" - sonata_page_cache_ssi",
|
||||
" - sonata_page_js_sync_cache",
|
||||
" - sonata_page_js_async_cache",
|
||||
" - sonata_cache_esi",
|
||||
" - sonata_cache_ssi",
|
||||
" - sonata_cache_js_async",
|
||||
" - sonata_cache_js_sync",
|
||||
" - sonata_cache_apc",
|
||||
" ignore_uri_patterns:",
|
||||
" - ^/admin\\/ # ignore admin route, ie route containing 'admin'",
|
||||
"",
|
||||
" default_template: default",
|
||||
" templates:",
|
||||
" default:",
|
||||
" path: '@SonataPage/layout.html.twig'",
|
||||
" name: 'default'",
|
||||
" containers:",
|
||||
" header:",
|
||||
" name: Header",
|
||||
" content_top:",
|
||||
" name: Top content",
|
||||
" content:",
|
||||
" name: Main content",
|
||||
" content_bottom:",
|
||||
" name: Bottom content",
|
||||
" footer:",
|
||||
" name: Footer",
|
||||
" matrix:",
|
||||
" layout: |",
|
||||
" HHHHHHHH",
|
||||
" HHHHHHHH",
|
||||
" TTTTTTTT",
|
||||
" TTTTTTTT",
|
||||
" CCCCCCCC",
|
||||
" CCCCCCCC",
|
||||
" BBBBBBBB",
|
||||
" BBBBBBBB",
|
||||
" FFFFFFFF",
|
||||
" FFFFFFFF",
|
||||
"",
|
||||
" mapping:",
|
||||
" H: header",
|
||||
" T: content_top",
|
||||
" C: content",
|
||||
" B: content_bottom",
|
||||
" F: footer",
|
||||
"",
|
||||
" direct_publication: '%kernel.debug%'",
|
||||
"",
|
||||
" catch_exceptions:",
|
||||
" not_found: [404] # render 404 page with \"not_found\" key (name generated: _page_internal_error_{key})",
|
||||
" fatal: [500] # so you can use the same page for different http errors or specify specific page for each error",
|
||||
"",
|
||||
" class:",
|
||||
" page: 'App\\Entity\\SonataPagePage'",
|
||||
" snapshot: 'App\\Entity\\SonataPageSnapshot'",
|
||||
" block: 'App\\Entity\\SonataPageBlock'",
|
||||
" site: 'App\\Entity\\SonataPageSite'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/SonataPageSite.php": {
|
||||
"contents": [
|
||||
"<?php",
|
||||
@@ -335,111 +440,6 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/sonata_page.yaml": {
|
||||
"contents": [
|
||||
"#sonata_page_api:",
|
||||
"# resource: '@SonataPageBundle/Resources/config/routing/api.xml'",
|
||||
"# prefix: /",
|
||||
"",
|
||||
"#sonata_page_cache:",
|
||||
"# resource: '@SonataPageBundle/Resources/config/routing/cache.xml'",
|
||||
"# prefix: /",
|
||||
"",
|
||||
"sonata_page_exceptions:",
|
||||
" resource: '@SonataPageBundle/Resources/config/routing/exceptions.xml'",
|
||||
" prefix: /",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/sonata_page.yaml": {
|
||||
"contents": [
|
||||
"sonata_block:",
|
||||
" context_manager: sonata.page.block.context_manager",
|
||||
" default_contexts: [sonata_page_bundle]",
|
||||
"",
|
||||
"sonata_admin:",
|
||||
" assets:",
|
||||
" extra_javascripts:",
|
||||
" - bundles/sonatapage/sonata-page.back.min.js",
|
||||
" extra_stylesheets:",
|
||||
" - bundles/sonatapage/sonata-page.back.min.css",
|
||||
"",
|
||||
"sonata_page:",
|
||||
" slugify_service: sonata.page.slugify.cocur",
|
||||
" multisite: host",
|
||||
" use_streamed_response: false",
|
||||
"",
|
||||
" router_auto_register:",
|
||||
" enabled: true",
|
||||
" priority: 150",
|
||||
" ignore_route_patterns:",
|
||||
" - ^(.*)admin(.*) # ignore admin route, ie route containing 'admin'",
|
||||
" - ^_(.*) # ignore symfony routes",
|
||||
" ignore_routes:",
|
||||
" - sonata_page_cache_esi",
|
||||
" - sonata_page_cache_ssi",
|
||||
" - sonata_page_js_sync_cache",
|
||||
" - sonata_page_js_async_cache",
|
||||
" - sonata_cache_esi",
|
||||
" - sonata_cache_ssi",
|
||||
" - sonata_cache_js_async",
|
||||
" - sonata_cache_js_sync",
|
||||
" - sonata_cache_apc",
|
||||
" ignore_uri_patterns:",
|
||||
" - ^/admin\\/ # ignore admin route, ie route containing 'admin'",
|
||||
"",
|
||||
" default_template: default",
|
||||
" templates:",
|
||||
" default:",
|
||||
" path: '@SonataPage/layout.html.twig'",
|
||||
" name: 'default'",
|
||||
" containers:",
|
||||
" header:",
|
||||
" name: Header",
|
||||
" content_top:",
|
||||
" name: Top content",
|
||||
" content:",
|
||||
" name: Main content",
|
||||
" content_bottom:",
|
||||
" name: Bottom content",
|
||||
" footer:",
|
||||
" name: Footer",
|
||||
" matrix:",
|
||||
" layout: |",
|
||||
" HHHHHHHH",
|
||||
" HHHHHHHH",
|
||||
" TTTTTTTT",
|
||||
" TTTTTTTT",
|
||||
" CCCCCCCC",
|
||||
" CCCCCCCC",
|
||||
" BBBBBBBB",
|
||||
" BBBBBBBB",
|
||||
" FFFFFFFF",
|
||||
" FFFFFFFF",
|
||||
"",
|
||||
" mapping:",
|
||||
" H: header",
|
||||
" T: content_top",
|
||||
" C: content",
|
||||
" B: content_bottom",
|
||||
" F: footer",
|
||||
"",
|
||||
" direct_publication: '%kernel.debug%'",
|
||||
"",
|
||||
" catch_exceptions:",
|
||||
" not_found: [404] # render 404 page with \"not_found\" key (name generated: _page_internal_error_{key})",
|
||||
" fatal: [500] # so you can use the same page for different http errors or specify specific page for each error",
|
||||
"",
|
||||
" class:",
|
||||
" page: 'App\\Entity\\SonataPagePage'",
|
||||
" snapshot: 'App\\Entity\\SonataPageSnapshot'",
|
||||
" block: 'App\\Entity\\SonataPageBlock'",
|
||||
" site: 'App\\Entity\\SonataPageSite'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "a46c459627c260caa16cf0234378d54b99c3b969"
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/dev/systemsdk_easy_log.yaml": {
|
||||
"config/packages/test/systemsdk_easy_log.yaml": {
|
||||
"contents": [
|
||||
"easy_log:",
|
||||
" log_path: '%kernel.logs_dir%/%kernel.environment%-readable.log'",
|
||||
@@ -22,7 +22,7 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/test/systemsdk_easy_log.yaml": {
|
||||
"config/packages/dev/systemsdk_easy_log.yaml": {
|
||||
"contents": [
|
||||
"easy_log:",
|
||||
" log_path: '%kernel.logs_dir%/%kernel.environment%-readable.log'",
|
||||
|
||||
@@ -17,12 +17,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"var/storage/screenshots/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/tienvx_mbt.yaml": {
|
||||
"contents": [
|
||||
"tienvx_mbt:",
|
||||
@@ -38,6 +32,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"var/storage/screenshots/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "c3dee2d3577c6878d256536e85dbed9be529e354"
|
||||
|
||||
@@ -22,12 +22,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"var/storage/screenshots/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/tienvx_mbt.yaml": {
|
||||
"contents": [
|
||||
"tienvx_mbt:",
|
||||
@@ -48,6 +42,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"var/storage/screenshots/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "9115d708d793208b5129daa8aa17d17f470aaa2e"
|
||||
|
||||
@@ -13,12 +13,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Method/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/rpc_server.yaml": {
|
||||
"contents": [
|
||||
"rpc:",
|
||||
@@ -49,6 +43,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Method/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "ec7efbddd11341ae51ed0b132dbae54659667ca5"
|
||||
|
||||
@@ -13,12 +13,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Method/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/routes/rpc_server.yaml": {
|
||||
"contents": [
|
||||
"rpc:",
|
||||
@@ -49,6 +43,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Method/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "55f99c8a9901bcb5cbd75ab722c923dae9bfb4ef"
|
||||
|
||||
@@ -12,12 +12,10 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/tsantos_serializer.yaml": {
|
||||
"config/packages/test/tsantos_serializer.yaml": {
|
||||
"contents": [
|
||||
"# Read the official documentation page of this bundle for further information about all possible configurations.",
|
||||
"# http://tsantos-serializer-bundle.readthedocs.io/",
|
||||
"tsantos_serializer:",
|
||||
" generation_strategy: file_not_exists",
|
||||
" generation_strategy: always",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
@@ -30,10 +28,12 @@
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/test/tsantos_serializer.yaml": {
|
||||
"config/packages/tsantos_serializer.yaml": {
|
||||
"contents": [
|
||||
"# Read the official documentation page of this bundle for further information about all possible configurations.",
|
||||
"# http://tsantos-serializer-bundle.readthedocs.io/",
|
||||
"tsantos_serializer:",
|
||||
" generation_strategy: always",
|
||||
" generation_strategy: file_not_exists",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
|
||||
@@ -16,12 +16,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Entity/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/nav.yaml": {
|
||||
"contents": [
|
||||
"# Read the documentation: https://github.com/vincentchalamon/nav-bundle",
|
||||
@@ -35,6 +29,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Entity/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "92fc2eb188beaea20b31f2c3bf8e0a07914d5018"
|
||||
|
||||
@@ -21,12 +21,6 @@
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"src/Model/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/eloquent.yaml": {
|
||||
"contents": [
|
||||
"wouterj_eloquent:",
|
||||
@@ -41,6 +35,12 @@
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"src/Model/.gitignore": {
|
||||
"contents": [
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "b39da4df8d90e09040061dbfd450ac02e1df29d2"
|
||||
|
||||
Reference in New Issue
Block a user