Update Flex endpoint

This commit is contained in:
github-action bot
2021-09-22 13:12:25 +00:00
parent 8f0c41f303
commit 16541137d2
180 changed files with 5053 additions and 3702 deletions
+72 -25
View File
@@ -1,20 +1,6 @@
{
"locks": {
"phpunit/phpunit": {
"version": "9.3",
"recipe": {
"repo": "9.3",
"branch": "master",
"version": "9.3",
"ref": "a6249a6c4392e9169b87abf93225f7f9f59025e6"
}
}
},
"manifests": {
"phpunit/phpunit": {
"repository": "github.com/symfony/recipes",
"package": "phpunit/phpunit",
"version": "9.3",
"manifest": {
"copy-from-recipe": {
".env.test": ".env.test",
@@ -28,23 +14,84 @@
},
"files": {
".env.test": {
"contents": "# define your env variables for the test env here\nKERNEL_CLASS='App\\Kernel'\nAPP_SECRET='$ecretf0rt3st'\nSYMFONY_DEPRECATIONS_HELPER=999999\nPANTHER_APP_ENV=panther\nPANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots\n",
"executable": false,
"encoding": ""
"contents": [
"# define your env variables for the test env here",
"KERNEL_CLASS='App\\Kernel'",
"APP_SECRET='$ecretf0rt3st'",
"SYMFONY_DEPRECATIONS_HELPER=999999",
"PANTHER_APP_ENV=panther",
"PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots",
""
],
"executable": false
},
"phpunit.xml.dist": {
"contents": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->\n<phpunit xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n xsi:noNamespaceSchemaLocation=\"vendor/phpunit/phpunit/phpunit.xsd\"\n backupGlobals=\"false\"\n colors=\"true\"\n bootstrap=\"tests/bootstrap.php\"\n convertDeprecationsToExceptions=\"false\"\n>\n <php>\n <ini name=\"display_errors\" value=\"1\" />\n <ini name=\"error_reporting\" value=\"-1\" />\n <server name=\"APP_ENV\" value=\"test\" force=\"true\" />\n <server name=\"SHELL_VERBOSITY\" value=\"-1\" />\n <server name=\"SYMFONY_PHPUNIT_REMOVE\" value=\"\" />\n <server name=\"SYMFONY_PHPUNIT_VERSION\" value=\"9.5\" />\n </php>\n\n <testsuites>\n <testsuite name=\"Project Test Suite\">\n <directory>tests</directory>\n </testsuite>\n </testsuites>\n\n <coverage processUncoveredFiles=\"true\">\n <include>\n <directory suffix=\".php\">src</directory>\n </include>\n </coverage>\n\n <listeners>\n <listener class=\"Symfony\\Bridge\\PhpUnit\\SymfonyTestsListener\" />\n </listeners>\n\n <!-- Run `composer require symfony/panther` before enabling this extension -->\n <!--\n <extensions>\n <extension class=\"Symfony\\Component\\Panther\\ServerExtension\" />\n </extensions>\n -->\n</phpunit>\n",
"executable": false,
"encoding": ""
"contents": [
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>",
"",
"<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->",
"<phpunit xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"",
" xsi:noNamespaceSchemaLocation=\"vendor/phpunit/phpunit/phpunit.xsd\"",
" backupGlobals=\"false\"",
" colors=\"true\"",
" bootstrap=\"tests/bootstrap.php\"",
" convertDeprecationsToExceptions=\"false\"",
">",
" <php>",
" <ini name=\"display_errors\" value=\"1\" />",
" <ini name=\"error_reporting\" value=\"-1\" />",
" <server name=\"APP_ENV\" value=\"test\" force=\"true\" />",
" <server name=\"SHELL_VERBOSITY\" value=\"-1\" />",
" <server name=\"SYMFONY_PHPUNIT_REMOVE\" value=\"\" />",
" <server name=\"SYMFONY_PHPUNIT_VERSION\" value=\"9.5\" />",
" </php>",
"",
" <testsuites>",
" <testsuite name=\"Project Test Suite\">",
" <directory>tests</directory>",
" </testsuite>",
" </testsuites>",
"",
" <coverage processUncoveredFiles=\"true\">",
" <include>",
" <directory suffix=\".php\">src</directory>",
" </include>",
" </coverage>",
"",
" <listeners>",
" <listener class=\"Symfony\\Bridge\\PhpUnit\\SymfonyTestsListener\" />",
" </listeners>",
"",
" <!-- Run `composer require symfony/panther` before enabling this extension -->",
" <!--",
" <extensions>",
" <extension class=\"Symfony\\Component\\Panther\\ServerExtension\" />",
" </extensions>",
" -->",
"</phpunit>",
""
],
"executable": false
},
"tests/bootstrap.php": {
"contents": "<?php\n\nuse Symfony\\Component\\Dotenv\\Dotenv;\n\nrequire dirname(__DIR__).'/vendor/autoload.php';\n\nif (file_exists(dirname(__DIR__).'/config/bootstrap.php')) {\n require dirname(__DIR__).'/config/bootstrap.php';\n} elseif (method_exists(Dotenv::class, 'bootEnv')) {\n (new Dotenv())->bootEnv(dirname(__DIR__).'/.env');\n}\n",
"executable": false,
"encoding": ""
"contents": [
"<?php",
"",
"use Symfony\\Component\\Dotenv\\Dotenv;",
"",
"require dirname(__DIR__).'/vendor/autoload.php';",
"",
"if (file_exists(dirname(__DIR__).'/config/bootstrap.php')) {",
" require dirname(__DIR__).'/config/bootstrap.php';",
"} elseif (method_exists(Dotenv::class, 'bootEnv')) {",
" (new Dotenv())->bootEnv(dirname(__DIR__).'/.env');",
"}",
""
],
"executable": false
}
},
"origin": "phpunit/phpunit:9.3@github.com/symfony/recipes:master",
"is_contrib": false
"ref": "a6249a6c4392e9169b87abf93225f7f9f59025e6"
}
}
}