├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Commands │ └── RunCommand.php ├── Error.php ├── Providers │ └── ConductorServiceProvider.php └── Services │ └── Package.php ├── art ├── composer_conductor.psd └── composer_conductor.webp ├── bootstrap ├── app.php └── providers.php ├── box.json ├── composer.json ├── composer.lock ├── conductor ├── config ├── app.php └── commands.php ├── phpunit.xml.dist └── tests ├── CreatesApplication.php ├── Feature └── RunCommandTest.php ├── Pest.php ├── TestCase.php └── Unit └── ExampleTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/README.md -------------------------------------------------------------------------------- /app/Commands/RunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/app/Commands/RunCommand.php -------------------------------------------------------------------------------- /app/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/app/Error.php -------------------------------------------------------------------------------- /app/Providers/ConductorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/app/Providers/ConductorServiceProvider.php -------------------------------------------------------------------------------- /app/Services/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/app/Services/Package.php -------------------------------------------------------------------------------- /art/composer_conductor.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/art/composer_conductor.psd -------------------------------------------------------------------------------- /art/composer_conductor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/art/composer_conductor.webp -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/composer.lock -------------------------------------------------------------------------------- /conductor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/conductor -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/config/app.php -------------------------------------------------------------------------------- /config/commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/config/commands.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/RunCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/tests/Feature/RunCommandTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artisan-build/conductor/HEAD/tests/Unit/ExampleTest.php --------------------------------------------------------------------------------