Skip to content

Commit

Permalink
Require laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ttrig committed Mar 14, 2024
1 parent a82fa86 commit 6bcc91c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 15 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- **BREAKING:** Require Laravel 11.

## [6.0.0] - 2023-03-01

Expand Down
12 changes: 3 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
"name": "glesys/butler-auth",
"description": "",
"license": "MIT",
"authors": [
{
"name": "Christoffer Persson",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Butler\\Auth\\": "src/"
Expand All @@ -27,10 +21,10 @@
"illuminate/support": "^11.0"
},
"require-dev": {
"laravel/pint": "^1.2",
"mockery/mockery": "^1.4.4",
"laravel/pint": "^1.14",
"mockery/mockery": "^1.6.9",
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^10.5"
"phpunit/phpunit": "^10.5.13"
},
"config": {
"sort-packages": true
Expand Down
12 changes: 6 additions & 6 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" bootstrap="vendor/autoload.php" cacheDirectory=".phpunit.cache">
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" cacheDirectory=".phpunit.cache">
<testsuite name="Butler Auth Test Suite">
<directory suffix="Test.php">tests</directory>
</testsuite>
<php>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="DB_DATABASE" value=":memory:"/>
</php>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>

0 comments on commit 6bcc91c

Please sign in to comment.