-
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
265 changed files
with
9,029 additions
and
1,649 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"authors": [ | ||
{ | ||
"name": "Irfan", | ||
"email": "[email protected]" | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
|
@@ -25,19 +25,18 @@ | |
} | ||
}, | ||
"require": { | ||
"fabpot/goutte": "^3.2", | ||
"php": "^7.1", | ||
"ext-json": "*" | ||
"php": "^8.0", | ||
"ext-json": "*", | ||
"fabpot/goutte": "^4.0" | ||
}, | ||
"require-dev": { | ||
"brianium/paratest": "~4.0", | ||
"brianium/paratest": "^6.4.1", | ||
"doctrine/collections": "^1.5", | ||
"friendsofphp/php-cs-fixer": "^2.16", | ||
"jakub-onderka/php-parallel-lint": "^1.0", | ||
"jikan-me/jikan-fixtures": "dev-master", | ||
"php-vcr/php-vcr": "~1.4", | ||
"php-vcr/phpunit-testlistener-vcr": "~3.2", | ||
"phpro/grumphp": "^0.19", | ||
"php-vcr/php-vcr": "^1.6", | ||
"phpro/grumphp": "^1.7.0", | ||
"phpunit/phpunit": "~9.0", | ||
"squizlabs/php_codesniffer": "^3.3" | ||
}, | ||
|
@@ -51,7 +50,10 @@ | |
] | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"phpro/grumphp": true | ||
} | ||
}, | ||
"repositories": { | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
<phpunit bootstrap="./test/bootstrap.php" colors="true"> | ||
<listeners> | ||
<listener class="VCR\PHPUnit\TestListener\VCRTestListener" file="vendor/php-vcr/phpunit-testlistener-vcr/src/VCRTestListener.php" /> | ||
</listeners> | ||
<testsuites> | ||
<testsuite name="Unit"> | ||
<directory>./test/JikanTest</directory> | ||
</testsuite> | ||
<testsuite name="Fast"> | ||
<directory>./test/JikanTest/JikanTest.php</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist processUncoveredFilesFromWhitelist="true"> | ||
<directory suffix=".php">src</directory> | ||
</whitelist> | ||
</filter> | ||
</phpunit> | ||
<?xml version="1.0"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./test/bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> | ||
<coverage processUncoveredFiles="true"> | ||
<include> | ||
<directory suffix=".php">src</directory> | ||
</include> | ||
</coverage> | ||
<listeners> | ||
<listener class="VCR\PHPUnit\TestListener\VCRTestListener" file="vendor/php-vcr/phpunit-testlistener-vcr/src/VCRTestListener.php"/> | ||
</listeners> | ||
<testsuites> | ||
<testsuite name="Unit"> | ||
<directory>./test/JikanTest</directory> | ||
</testsuite> | ||
<testsuite name="Fast"> | ||
<directory>./test/JikanTest/JikanTest.php</directory> | ||
</testsuite> | ||
</testsuites> | ||
</phpunit> |
Oops, something went wrong.