mirror of
https://github.com/symfony/recipes.git
synced 2026-09-13 08:06:23 +03:00
Merge pull request #499
This commit is contained in:
@@ -0,0 +1 @@
|
||||
../../../../symfony/framework-bundle/3.3/config/bootstrap.php
|
||||
@@ -1,4 +1,4 @@
|
||||
<?php
|
||||
|
||||
putenv('APP_ENV='.$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = 'test');
|
||||
require dirname(__DIR__, 2).'/src/.bootstrap.php';
|
||||
require dirname(__DIR__, 2).'/config/bootstrap.php';
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"copy-from-recipe": {
|
||||
"behat.yml.dist": "behat.yml.dist",
|
||||
"features/": "features/",
|
||||
"src/": "%SRC_DIR%/"
|
||||
"config/": "%CONFIG_DIR%/",
|
||||
"features/": "features/"
|
||||
},
|
||||
"aliases": ["behat"],
|
||||
"gitignore": ["behat.yml"]
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
../../../../symfony/framework-bundle/3.3/src/.bootstrap.php
|
||||
@@ -0,0 +1 @@
|
||||
../../../../symfony/framework-bundle/3.3/config/bootstrap.php
|
||||
@@ -2,7 +2,7 @@
|
||||
"copy-from-recipe": {
|
||||
".env.test": ".env.test",
|
||||
"phpunit.xml.dist": "phpunit.xml.dist",
|
||||
"src/": "%SRC_DIR%/",
|
||||
"config/": "%CONFIG_DIR%/",
|
||||
"tests/": "tests/"
|
||||
},
|
||||
"gitignore": [
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
|
||||
backupGlobals="false"
|
||||
colors="true"
|
||||
bootstrap="src/.bootstrap.php"
|
||||
bootstrap="config/bootstrap.php"
|
||||
>
|
||||
<php>
|
||||
<ini name="error_reporting" value="-1" />
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
../../../../symfony/framework-bundle/3.3/src/.bootstrap.php
|
||||
@@ -25,7 +25,7 @@ if ($input->hasParameterOption('--no-debug', true)) {
|
||||
putenv('APP_DEBUG='.$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = '0');
|
||||
}
|
||||
|
||||
require dirname(__DIR__).'/src/.bootstrap.php';
|
||||
require dirname(__DIR__).'/config/bootstrap.php';
|
||||
|
||||
if ($_SERVER['APP_DEBUG']) {
|
||||
umask(0000);
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
../../../../symfony/framework-bundle/3.3/config/bootstrap.php
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"copy-from-recipe": {
|
||||
"bin/": "%BIN_DIR%/",
|
||||
"src/": "%SRC_DIR%/"
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"aliases": ["cli"]
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
../../../../symfony/framework-bundle/3.3/src/.bootstrap.php
|
||||
@@ -4,7 +4,7 @@ use App\Kernel;
|
||||
use Symfony\Component\Debug\Debug;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
|
||||
require dirname(__DIR__).'/src/.bootstrap.php';
|
||||
require dirname(__DIR__).'/config/bootstrap.php';
|
||||
|
||||
if ($_SERVER['APP_DEBUG']) {
|
||||
umask(0000);
|
||||
|
||||
@@ -4,7 +4,7 @@ use App\Kernel;
|
||||
use Symfony\Component\Debug\Debug;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
|
||||
require dirname(__DIR__).'/src/.bootstrap.php';
|
||||
require dirname(__DIR__).'/config/bootstrap.php';
|
||||
|
||||
if ($_SERVER['APP_DEBUG']) {
|
||||
umask(0000);
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
../../../../symfony/framework-bundle/3.3/config/bootstrap.php
|
||||
@@ -4,7 +4,6 @@
|
||||
"bin/": "%BIN_DIR%/",
|
||||
"config/": "%CONFIG_DIR%/",
|
||||
"phpunit.xml.dist": "phpunit.xml.dist",
|
||||
"src/": "%SRC_DIR%/",
|
||||
"tests/": "tests/"
|
||||
},
|
||||
"gitignore": [
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
|
||||
backupGlobals="false"
|
||||
colors="true"
|
||||
bootstrap="src/.bootstrap.php"
|
||||
bootstrap="config/bootstrap.php"
|
||||
>
|
||||
<php>
|
||||
<ini name="error_reporting" value="-1" />
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
../../../../symfony/framework-bundle/3.3/src/.bootstrap.php
|
||||
@@ -0,0 +1 @@
|
||||
../../../../symfony/framework-bundle/3.3/config/bootstrap.php
|
||||
@@ -2,8 +2,8 @@
|
||||
"copy-from-recipe": {
|
||||
".env.test": ".env.test",
|
||||
"bin/": "%BIN_DIR%/",
|
||||
"config/": "%CONFIG_DIR%/",
|
||||
"phpunit.xml.dist": "phpunit.xml.dist",
|
||||
"src/": "%SRC_DIR%/",
|
||||
"tests/": "tests/"
|
||||
},
|
||||
"gitignore": [
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
../../../../symfony/framework-bundle/3.3/src/.bootstrap.php
|
||||
Reference in New Issue
Block a user