Skip to content

Commit f54d6a4

Browse files
Move src/.bootstrap.php to config/bootstrap.php
1 parent a1147a4 commit f54d6a4

File tree

23 files changed

+16
-17
lines changed

23 files changed

+16
-17
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../symfony/framework-bundle/3.3/config/bootstrap.php
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?php
22

33
putenv('APP_ENV='.$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = 'test');
4-
require dirname(__DIR__, 2).'/src/.bootstrap.php';
4+
require dirname(__DIR__, 2).'/config/bootstrap.php';

behat/symfony2-extension/2.1/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"copy-from-recipe": {
33
"behat.yml.dist": "behat.yml.dist",
4-
"features/": "features/",
5-
"src/": "%SRC_DIR%/"
4+
"config/": "%CONFIG_DIR%/",
5+
"features/": "features/"
66
},
77
"aliases": ["behat"],
88
"gitignore": ["behat.yml"]

behat/symfony2-extension/2.1/src/.bootstrap.php

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../symfony/framework-bundle/3.3/config/bootstrap.php

phpunit/phpunit/4.7/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"copy-from-recipe": {
33
".env.test": ".env.test",
44
"phpunit.xml.dist": "phpunit.xml.dist",
5-
"src/": "%SRC_DIR%/",
5+
"config/": "%CONFIG_DIR%/",
66
"tests/": "tests/"
77
},
88
"gitignore": [

phpunit/phpunit/4.7/phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
66
backupGlobals="false"
77
colors="true"
8-
bootstrap="src/.bootstrap.php"
8+
bootstrap="config/bootstrap.php"
99
>
1010
<php>
1111
<ini name="error_reporting" value="-1" />

phpunit/phpunit/4.7/src/.bootstrap.php

Lines changed: 0 additions & 1 deletion
This file was deleted.

symfony/console/3.3/bin/console

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if ($input->hasParameterOption('--no-debug', true)) {
2525
putenv('APP_DEBUG='.$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = '0');
2626
}
2727

28-
require dirname(__DIR__).'/src/.bootstrap.php';
28+
require dirname(__DIR__).'/config/bootstrap.php';
2929

3030
if ($_SERVER['APP_DEBUG']) {
3131
umask(0000);
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../symfony/framework-bundle/3.3/config/bootstrap.php

symfony/console/3.3/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"copy-from-recipe": {
33
"bin/": "%BIN_DIR%/",
4-
"src/": "%SRC_DIR%/"
4+
"config/": "%CONFIG_DIR%/"
55
},
66
"aliases": ["cli"]
77
}

symfony/console/3.3/src/.bootstrap.php

Lines changed: 0 additions & 1 deletion
This file was deleted.

symfony/framework-bundle/3.3/public/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use Symfony\Component\Debug\Debug;
55
use Symfony\Component\HttpFoundation\Request;
66

7-
require dirname(__DIR__).'/src/.bootstrap.php';
7+
require dirname(__DIR__).'/config/bootstrap.php';
88

99
if ($_SERVER['APP_DEBUG']) {
1010
umask(0000);

symfony/framework-bundle/4.2/public/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use Symfony\Component\Debug\Debug;
55
use Symfony\Component\HttpFoundation\Request;
66

7-
require dirname(__DIR__).'/src/.bootstrap.php';
7+
require dirname(__DIR__).'/config/bootstrap.php';
88

99
if ($_SERVER['APP_DEBUG']) {
1010
umask(0000);
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../symfony/framework-bundle/3.3/config/bootstrap.php

symfony/phpunit-bridge/3.3/manifest.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"bin/": "%BIN_DIR%/",
55
"config/": "%CONFIG_DIR%/",
66
"phpunit.xml.dist": "phpunit.xml.dist",
7-
"src/": "%SRC_DIR%/",
87
"tests/": "tests/"
98
},
109
"gitignore": [

symfony/phpunit-bridge/3.3/phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
66
backupGlobals="false"
77
colors="true"
8-
bootstrap="src/.bootstrap.php"
8+
bootstrap="config/bootstrap.php"
99
>
1010
<php>
1111
<ini name="error_reporting" value="-1" />

symfony/phpunit-bridge/3.3/src/.bootstrap.php

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../symfony/framework-bundle/3.3/config/bootstrap.php

symfony/phpunit-bridge/4.1/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"copy-from-recipe": {
33
".env.test": ".env.test",
44
"bin/": "%BIN_DIR%/",
5+
"config/": "%CONFIG_DIR%/",
56
"phpunit.xml.dist": "phpunit.xml.dist",
6-
"src/": "%SRC_DIR%/",
77
"tests/": "tests/"
88
},
99
"gitignore": [

symfony/phpunit-bridge/4.1/src/.bootstrap.php

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)