-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from thecodingmachine/laravel-9-and-10
Adding compatibility with Laravel 9 and 10
- Loading branch information
Showing
8 changed files
with
57 additions
and
83 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 |
---|---|---|
|
@@ -13,26 +13,27 @@ | |
{ | ||
"name": "David N\u00e9grier", | ||
"email": "[email protected]", | ||
"homepage": "http://mouf-php.com" | ||
"homepage": "https://workadventu.re" | ||
} | ||
], | ||
"scripts": { | ||
"test": "phpunit" | ||
}, | ||
"require": { | ||
"php": ">=7.2|^8", | ||
"thecodingmachine/graphqlite": "^6.0", | ||
"illuminate/console": "^5.7|^6.0|^7|^8|^9", | ||
"illuminate/container": "^5.7|^6.0|^7|^8|^9", | ||
"illuminate/support": "^5.7|^6.0|^7|^8|^9", | ||
"illuminate/cache": "^5.7|^6.0|^7|^8|^9", | ||
"php": "^8.1", | ||
"thecodingmachine/graphqlite": "^v6.2.1", | ||
"illuminate/console": "^9 || ^10", | ||
"illuminate/container": "^9 || ^10", | ||
"illuminate/support": "^9 || ^10", | ||
"illuminate/cache": "^9 || ^10", | ||
"symfony/psr-http-message-bridge": "^1.3.0 || ^2", | ||
"laminas/laminas-diactoros": "^2.2.2", | ||
"symfony/cache": "^4.3 || ^5 || ^6" | ||
"symfony/cache": "^4.3 || ^5 || ^6", | ||
"psr/container": "^2.0.2" | ||
}, | ||
"require-dev": { | ||
"orchestra/testbench": "^3.7.7 || ^4 || ^5", | ||
"phpunit/phpunit": "^7.5.4 || ^8.3", | ||
"orchestra/testbench": "^7 || ^8", | ||
"phpunit/phpunit": "^9.6.6 || ^10.0.19", | ||
"ext-sqlite3": "*" | ||
}, | ||
"autoload": { | ||
|
@@ -47,7 +48,7 @@ | |
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "6.0.x-dev" | ||
"dev-master": "6.1.x-dev" | ||
}, | ||
"laravel": { | ||
"providers": [ | ||
|
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,36 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<phpunit backupGlobals="false" | ||
backupStaticAttributes="false" | ||
colors="true" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
processIsolation="false" | ||
stopOnFailure="false" | ||
bootstrap="vendor/autoload.php" | ||
> | ||
<testsuites> | ||
<testsuite name="Test Suite"> | ||
<directory>./tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<php> | ||
<env name="APP_KEY" value="9E6B382F19C53C5327840752500B0260"/> | ||
<env name="APP_DEBUG" value="true"/> | ||
</php> | ||
|
||
<filter> | ||
<whitelist processUncoveredFilesFromWhitelist="true"> | ||
<directory suffix=".php">src/</directory> | ||
<exclude> | ||
<directory suffix=".php">src/routes</directory> | ||
</exclude> | ||
</whitelist> | ||
</filter> | ||
<logging> | ||
<log type="coverage-html" target="build/coverage" /> | ||
<log type="coverage-clover" target="build/logs/clover.xml"/> | ||
</logging> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">src/</directory> | ||
</include> | ||
<exclude> | ||
<directory suffix=".php">src/routes</directory> | ||
</exclude> | ||
<report> | ||
<clover outputFile="build/logs/clover.xml"/> | ||
<html outputDirectory="build/coverage"/> | ||
</report> | ||
</coverage> | ||
<testsuites> | ||
<testsuite name="Test Suite"> | ||
<directory>./tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<php> | ||
<env name="APP_KEY" value="9E6B382F19C53C5327840752500B0260"/> | ||
<env name="APP_DEBUG" value="true"/> | ||
</php> | ||
<logging/> | ||
</phpunit> |
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
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
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