File tree Expand file tree Collapse file tree 5 files changed +6
-25
lines changed Expand file tree Collapse file tree 5 files changed +6
-25
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,15 +6,16 @@ use Symfony\Component\Console\Input\ArgvInput;
6
6
use Symfony \Component \Debug \Debug ;
7
7
8
8
// if you don't want to setup permissions the proper way, just uncomment the following PHP line
9
- // read https://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information
9
+ // read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
10
+ // for more information
10
11
//umask(0000);
11
12
12
13
set_time_limit (0 );
13
14
14
15
/**
15
16
* @var Composer\Autoload\ClassLoader $loader
16
17
*/
17
- $ loader = require __DIR__ .'/../app /autoload.php ' ;
18
+ $ loader = require __DIR__ .'/../vendor /autoload.php ' ;
18
19
19
20
$ input = new ArgvInput ();
20
21
$ env = $ input ->getParameterOption (['--env ' , '-e ' ], getenv ('SYMFONY_ENV ' ) ?: 'dev ' );
Original file line number Diff line number Diff line change 5
5
xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/4.8/phpunit.xsd"
6
6
backupGlobals =" false"
7
7
colors =" true"
8
- bootstrap =" app /autoload.php"
8
+ bootstrap =" vendor /autoload.php"
9
9
>
10
10
<php >
11
11
<ini name =" error_reporting" value =" -1" />
Original file line number Diff line number Diff line change 19
19
/**
20
20
* @var Composer\Autoload\ClassLoader
21
21
*/
22
- $ loader = require __DIR__ .'/../app /autoload.php ' ;
22
+ $ loader = require __DIR__ .'/../vendor /autoload.php ' ;
23
23
if (PHP_VERSION_ID < 70000 ) {
24
24
include_once __DIR__ .'/../var/bootstrap.php.cache ' ;
25
25
}
Original file line number Diff line number Diff line change 34
34
}
35
35
36
36
/** @var Composer\Autoload\ClassLoader $loader */
37
- $ loader = require __DIR__ .'/../app /autoload.php ' ;
37
+ $ loader = require __DIR__ .'/../vendor /autoload.php ' ;
38
38
Debug::enable ();
39
39
40
40
$ kernel = new AppKernel ('dev ' , true );
You can’t perform that action at this time.
0 commit comments