Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/composer.lock
/dist/
/phpunit.xml
/tests/Integration/output
/tests/Integration/App/var/
/tests/Integration/output
/vendor-bin/*/vendor/
/vendor/
5 changes: 1 addition & 4 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@
use PhpCsFixer\Finder;

$finder = Finder::create()
->files()
->in(__DIR__)
->append([
'.github/fix-symfony-versions',
'set-composer-conflicts.php',
])
->exclude([
'dist',
'tests/Integration/App/var',
Expand Down
15 changes: 9 additions & 6 deletions bin/console
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
#!/usr/bin/env php
<?php

/*
* This file is part of the Webmozarts Console Parallelization package.
*
* (c) Webmozarts GmbH <office@webmozarts.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

declare(strict_types=1);

require __DIR__.'/../vendor/autoload.php';

use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\DependencyInjection\Container;
use Webmozarts\Console\Parallelization\Fixtures\Command\AbsoluteScriptPathCommand;
use Webmozarts\Console\Parallelization\Fixtures\Command\ImportMoviesCommand;
use Webmozarts\Console\Parallelization\Fixtures\Command\ImportUnknownMoviesCountCommand;
use Webmozarts\Console\Parallelization\Fixtures\Command\LegacyCommand;
use Webmozarts\Console\Parallelization\Fixtures\Command\NoSubProcessCommand;
use Webmozarts\Console\Parallelization\Integration\App\Kernel;
use function Safe\ini_set;

Expand Down
1 change: 0 additions & 1 deletion bin/fix-symfony-versions
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ use function file_get_contents;
use function file_put_contents;
use function json_decode;
use function json_encode;
use function shell_exec;
use const JSON_PRETTY_PRINT;
use const JSON_UNESCAPED_SLASHES;

Expand Down
9 changes: 9 additions & 0 deletions bin/no-framework
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
#!/usr/bin/env php
<?php

/*
* This file is part of the Webmozarts Console Parallelization package.
*
* (c) Webmozarts GmbH <office@webmozarts.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

declare(strict_types=1);

require __DIR__.'/../vendor/autoload.php';
Expand Down
2 changes: 1 addition & 1 deletion phpstan-tests.neon.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ parameters:
- bin/set-composer-conflicts.php
- tests
excludePaths:
- tests/Integration/var
- tests/Integration/App/var
- tests/Input/FakeInput.php
- tests/Input/FakeInput74.php
- tests/Input/FakeInput81.php
Expand Down
2 changes: 1 addition & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
__DIR__.'/tests/Integration/OutputNormalizer.php',
],

__DIR__.'/tests/Integration/var',
__DIR__.'/tests/Integration/App/var',
]);
Empty file.
Loading