mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-19 11:06:41 +03:00
Update Flex endpoint
This commit is contained in:
@@ -435,6 +435,9 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
|
||||
| [openai-php/symfony](https://packagist.org/packages/openai-php/symfony) | [0.3](openai-php/symfony/0.3) |
|
||||
| [orbitale/cms-bundle](https://packagist.org/packages/orbitale/cms-bundle) | [3.0](orbitale/cms-bundle/3.0) |
|
||||
| [orbitale/easyimpress-bundle](https://packagist.org/packages/orbitale/easyimpress-bundle) | [1.0](orbitale/easyimpress-bundle/1.0) |
|
||||
| [oskarstark/doctrine-datetime-milliseconds-type](https://packagist.org/packages/oskarstark/doctrine-datetime-milliseconds-type) | [2.1](oskarstark/doctrine-datetime-milliseconds-type/2.1) |
|
||||
| [oskarstark/doctrine-postgres-milliseconds-platform](https://packagist.org/packages/oskarstark/doctrine-postgres-milliseconds-platform) | [2.1](oskarstark/doctrine-postgres-milliseconds-platform/2.1) |
|
||||
| [oskarstark/doctrine-postgres-public-schema-listener](https://packagist.org/packages/oskarstark/doctrine-postgres-public-schema-listener) | [1.2](oskarstark/doctrine-postgres-public-schema-listener/1.2) |
|
||||
| [oskarstark/env-var-extension](https://packagist.org/packages/oskarstark/env-var-extension) | [1.0](oskarstark/env-var-extension/1.0) |
|
||||
| [oskarstark/no-floc-listener](https://packagist.org/packages/oskarstark/no-floc-listener) | [0.1](oskarstark/no-floc-listener/0.1) |
|
||||
| [oskarstark/readable-filesize-extension](https://packagist.org/packages/oskarstark/readable-filesize-extension) | [0.1](oskarstark/readable-filesize-extension/0.1) |
|
||||
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"manifests": {
|
||||
"oskarstark/doctrine-datetime-milliseconds-type": {
|
||||
"manifest": {
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/oskarstark_doctrine_datetime_milliseconds_type.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
"",
|
||||
" OskarStark\\Doctrine\\Type\\Doctrine\\DBAL\\Types\\Type\\DateTimeMillisecondsType: null",
|
||||
"",
|
||||
"doctrine:",
|
||||
" dbal:",
|
||||
" types:",
|
||||
" # We want to store DateTime objects with milliseconds",
|
||||
" # The solution is built on https://github.com/doctrine/dbal/issues/2873#issuecomment-701052412",
|
||||
" # but instead of using microseconds we use milliseconds",
|
||||
" datetime: OskarStark\\Doctrine\\Type\\Doctrine\\DBAL\\Types\\Type\\DateTimeMillisecondsType",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "dbfbcbc7ec428cc3755fd0c02db6e8613575e60b"
|
||||
}
|
||||
}
|
||||
}
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"manifests": {
|
||||
"oskarstark/doctrine-postgres-milliseconds-platform": {
|
||||
"manifest": {
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/oskarstark_doctrine_postgres_milliseconds_platform.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
"",
|
||||
" OskarStark\\Doctrine\\Postgres\\Platform\\Doctrine\\DBAL\\Platforms\\PostgreSQLMillisecondsPlatform: null",
|
||||
"",
|
||||
"doctrine:",
|
||||
" dbal:",
|
||||
" # We want to store DateTime objects with milliseconds",
|
||||
" # The solution is built on https://github.com/doctrine/dbal/issues/2873#issuecomment-701052412",
|
||||
" # but instead of using microseconds we use milliseconds",
|
||||
" platform_service: OskarStark\\Doctrine\\Postgres\\Platform\\Doctrine\\DBAL\\Platforms\\PostgreSQLMillisecondsPlatform",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "f40300d25f68059d9f46a9fba0f1b9add394c589"
|
||||
}
|
||||
}
|
||||
}
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"manifests": {
|
||||
"oskarstark/doctrine-postgres-public-schema-listener": {
|
||||
"manifest": {
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/oskarstark_doctrine_postgres_public_schema_listener.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
"",
|
||||
" OskarStark\\Doctrine\\EventSubscriber\\MigrationEventSubscriber:",
|
||||
" tags:",
|
||||
" - { name: doctrine.event_subscriber, connection: default }",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "b44fa149a4797580324bd0695854ad48195f4cf2"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1379,6 +1379,15 @@
|
||||
"orbitale/easyimpress-bundle": [
|
||||
"1.0"
|
||||
],
|
||||
"oskarstark/doctrine-datetime-milliseconds-type": [
|
||||
"2.1"
|
||||
],
|
||||
"oskarstark/doctrine-postgres-milliseconds-platform": [
|
||||
"2.1"
|
||||
],
|
||||
"oskarstark/doctrine-postgres-public-schema-listener": [
|
||||
"1.2"
|
||||
],
|
||||
"oskarstark/env-var-extension": [
|
||||
"1.0"
|
||||
],
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"manifests": {
|
||||
"oskarstark/doctrine-datetime-milliseconds-type": {
|
||||
"manifest": {
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/oskarstark_doctrine_datetime_milliseconds_type.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
"",
|
||||
" OskarStark\\Doctrine\\Type\\Doctrine\\DBAL\\Types\\Type\\DateTimeMillisecondsType: null",
|
||||
"",
|
||||
"doctrine:",
|
||||
" dbal:",
|
||||
" types:",
|
||||
" # We want to store DateTime objects with milliseconds",
|
||||
" # The solution is built on https://github.com/doctrine/dbal/issues/2873#issuecomment-701052412",
|
||||
" # but instead of using microseconds we use milliseconds",
|
||||
" datetime: OskarStark\\Doctrine\\Type\\Doctrine\\DBAL\\Types\\Type\\DateTimeMillisecondsType",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "dbfbcbc7ec428cc3755fd0c02db6e8613575e60b"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"manifests": {
|
||||
"oskarstark/doctrine-postgres-milliseconds-platform": {
|
||||
"manifest": {
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/oskarstark_doctrine_postgres_milliseconds_platform.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
"",
|
||||
" OskarStark\\Doctrine\\Postgres\\Platform\\Doctrine\\DBAL\\Platforms\\PostgreSQLMillisecondsPlatform: null",
|
||||
"",
|
||||
"doctrine:",
|
||||
" dbal:",
|
||||
" # We want to store DateTime objects with milliseconds",
|
||||
" # The solution is built on https://github.com/doctrine/dbal/issues/2873#issuecomment-701052412",
|
||||
" # but instead of using microseconds we use milliseconds",
|
||||
" platform_service: OskarStark\\Doctrine\\Postgres\\Platform\\Doctrine\\DBAL\\Platforms\\PostgreSQLMillisecondsPlatform",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "f40300d25f68059d9f46a9fba0f1b9add394c589"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"manifests": {
|
||||
"oskarstark/doctrine-postgres-public-schema-listener": {
|
||||
"manifest": {
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/oskarstark_doctrine_postgres_public_schema_listener.yaml": {
|
||||
"contents": [
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
"",
|
||||
" OskarStark\\Doctrine\\EventSubscriber\\MigrationEventSubscriber:",
|
||||
" tags:",
|
||||
" - { name: doctrine.event_subscriber, connection: default }",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "b44fa149a4797580324bd0695854ad48195f4cf2"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user