Skip to content

Commit 1021922

Browse files
authored
chore: 🤖 Bump version (#7)
1 parent 9d91949 commit 1021922

File tree

5 files changed

+33
-54
lines changed

5 files changed

+33
-54
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: ['8.0', 8.1, 8.2]
11+
php: [8.2, 8.3, 8.4]
1212
lib:
13-
- { laravel: ^11.0 }
14-
- { laravel: ^10.0 }
15-
- { laravel: ^9.0 }
13+
- laravel: ^13.0.x-dev
14+
- laravel: ^12.0
15+
- laravel: ^11.0
1616
exclude:
17-
- { php: 8.0, lib: { laravel: ^10.0 } }
18-
- { php: 8.0, lib: { laravel: ^11.0 } }
19-
- { php: 8.1, lib: { laravel: ^11.0 } }
17+
- php: 8.2
18+
lib:
19+
laravel: ^13.0.x-dev
2020

2121
steps:
2222
- uses: actions/checkout@v3

.scrutinizer.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
# Laravel File Errors [![Build Status](https://github.com/mpyw/laravel-file-errors/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/mpyw/laravel-file-errors/actions) [![Coverage Status](https://coveralls.io/repos/github/mpyw/laravel-file-errors/badge.svg?branch=master)](https://coveralls.io/github/mpyw/laravel-file-errors?branch=master) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/mpyw/laravel-file-errors/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/mpyw/laravel-file-errors/?branch=master)
1+
# Laravel File Errors [![Build Status](https://github.com/mpyw/laravel-file-errors/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/mpyw/laravel-file-errors/actions) [![Coverage Status](https://coveralls.io/repos/github/mpyw/laravel-file-errors/badge.svg?branch=master)](https://coveralls.io/github/mpyw/laravel-file-errors?branch=master)
22

33
A tiny extension that reports validation error details about uploaded files
44

55
## Requirements
66

7-
- PHP: `^8.0`
8-
- Laravel: `^9.0 || ^10.0`
7+
- PHP: `^8.2`
8+
- Laravel: `^11.0 || ^12.0`
9+
10+
> [!NOTE]
11+
> Older versions have outdated dependency requirements. If you cannot prepare the latest environment, please refer to past releases.
912
1013
## Installing
1114

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
},
2323
"require": {
2424
"php": "^8.0",
25-
"illuminate/http": "^9.0 || ^10.0 || ^11.0",
26-
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
27-
"illuminate/validation": "^9.0 || ^10.0 || ^11.0"
25+
"illuminate/http": "^11.0 || ^12.0 || ^13.0",
26+
"illuminate/support": "^11.0 || ^12.0 || ^13.0",
27+
"illuminate/validation": "^11.0 || ^12.0 || ^13.0"
2828
},
2929
"require-dev": {
3030
"orchestra/testbench": "*",
31-
"orchestra/testbench-core": ">=7.0",
32-
"phpunit/phpunit": ">=9.5"
31+
"orchestra/testbench-core": ">=9.0",
32+
"phpunit/phpunit": ">=11.0"
3333
},
3434
"minimum-stability": "dev",
3535
"prefer-stable": true

phpunit.xml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3-
<coverage>
2+
<phpunit backupGlobals="false"
3+
bootstrap="vendor/autoload.php"
4+
colors="true"
5+
processIsolation="false"
6+
stopOnFailure="false"
7+
cacheDirectory=".phpunit.cache"
8+
backupStaticProperties="false">
9+
10+
<source>
411
<include>
5-
<directory suffix=".php">src</directory>
12+
<directory>./src</directory>
613
</include>
7-
</coverage>
14+
</source>
15+
16+
<coverage/>
17+
818
<testsuites>
919
<testsuite name="Package Test Suite">
10-
<directory suffix="Test.php">./tests/</directory>
20+
<directory suffix="Test.php">./tests</directory>
1121
</testsuite>
1222
</testsuites>
1323
</phpunit>

0 commit comments

Comments
 (0)