normalize bin files

This commit is contained in:
Tomas Votruba 2018-07-17 19:36:48 +02:00
parent 3860464c40
commit c6193e5911
4 changed files with 10 additions and 11 deletions

View File

@ -9,11 +9,11 @@ use Symplify\PackageBuilder\Console\ThrowableRenderer;
gc_disable();
// Require Composer autoload.php
require_once __DIR__ . '/rector_bootstrap.php';
require_once __DIR__ . '/bootstrap.php';
try {
/** @var ContainerInterface $container */
$container = require_once __DIR__ . '/rector_container.php';
$container = require_once __DIR__ . '/container.php';
$application = $container->get(Application::class);
exit($application->run());

View File

@ -19,6 +19,7 @@
"symfony/dependency-injection": "^3.4|^4.0",
"symfony/finder": "^3.4|^4.0",
"symplify/better-phpdoc-parser": "^4.5",
"symplify/changelog-linker": "^4.5",
"symplify/monorepo-builder": "^4.5"
},
"require-dev": {
@ -80,16 +81,14 @@
"bin/clean_levels.sh"
],
"phpstan": "vendor/bin/phpstan.phar analyse packages src tests --level max --configuration phpstan.neon",
"update-docs": "bin/rector describe --level all --format md > docs/AllRectorsOverview.md"
"update-docs": "bin/rector describe --level all --format md > docs/AllRectorsOverview.md",
"changelog": [
"vendor/bin/changelog-linker dump-merges",
"vendor/bin/changelog-linker linkify"
]
},
"bin": [
"bin/rector",
"bin/rector_bootstrap.php",
"bin/rector_container.php"
],
"bin": ["bin/rector"],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}
}