diff --git a/.gitignore b/.gitignore index 88071df64..5ac93e320 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ tests/fixtures/cassette* composer.lock .phpunit.result.cache .php-cs-fixer.cache +.idea diff --git a/composer.json b/composer.json index 24cd1a39f..bfee961d4 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "php-vcr/php-vcr", + "name": "covergenius/php-vcr", "description": "Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.", "license": "MIT", "scripts": { @@ -12,14 +12,17 @@ { "name": "Adrian Philipp", "email": "mail@adrian-philipp.com" + }, + { + "name": "Cover Genius Engineering Team" } ], "require": { "php": "^8.0", "ext-curl": "*", "beberlei/assert": "^3.2.5", - "symfony/yaml": "^3.0|^4.0|^5.0", - "symfony/event-dispatcher": "^5.0" + "symfony/yaml": "^3.0|^4.0|^5.0|^6.0", + "symfony/event-dispatcher": "^5.0|^6.0" }, "require-dev": { "guzzlehttp/guzzle": "^7.0", @@ -41,5 +44,10 @@ "psr-4": { "VCR\\Tests\\": "tests" } + }, + "config": { + "allow-plugins": { + "phpstan/extension-installer": true + } } } diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 000000000..bc9de4884 --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,16 @@ + + + + + src + + + + + ./tests/Unit + + + ./tests/Integration + + +