diff --git a/.gitattributes b/.gitattributes index 767bc9c..3686d80 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,7 +6,6 @@ /.gitattributes export-ignore /.gitignore export-ignore /.phpunit.cache export-ignore -/canvas.yaml export-ignore /phpstan-baseline.neon export-ignore /phpstan.neon.dist export-ignore /phpunit.xml export-ignore diff --git a/composer.json b/composer.json index cfe2b93..4449b54 100644 --- a/composer.json +++ b/composer.json @@ -57,7 +57,7 @@ }, "scripts": { "post-autoload-dump": "@prepare", - "prepare": "@php ./vendor/bin/testbench package:discover --ansi", + "prepare": "@php vendor/bin/testbench package:discover --ansi", "lint": [ "@php vendor/bin/phpstan analyse", "@php vendor/bin/pint" diff --git a/src/Testing/TestCase.php b/src/Testing/TestCase.php index b72a20b..28411cb 100644 --- a/src/Testing/TestCase.php +++ b/src/Testing/TestCase.php @@ -2,9 +2,6 @@ namespace Orchestra\Canvas\Core\Testing; -use Composer\InstalledVersions; -use Composer\Semver\VersionParser; - class TestCase extends \Orchestra\Testbench\TestCase { use Concerns\InteractsWithPublishedFiles;