Skip to content

Commit 5f54da6

Browse files
authored
Merge pull request #23 from karriereat/dev/update-packages
Update psr/cache and pestphp/pest
2 parents daec83b + ff662d0 commit 5f54da6

File tree

4 files changed

+37
-28
lines changed

4 files changed

+37
-28
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
php: [ "8.0", "8.1", "8.2" ]
15+
php: [ "8.1", "8.2", "8.3" ]
1616

1717
runs-on: ubuntu-latest
1818
name: PHP@${{ matrix.php }}

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.1.0] - 2024-02-27
8+
### Added
9+
- Support for PHP 8.3
10+
- Support for `psr/cache` ^2.0 and ^3.0
11+
- Support for `illuminate/support` v11
12+
- Support for `illuminate/session` v11
13+
14+
### Updated
15+
- `pestphp/pest` to v2
16+
17+
### Removed
18+
- Support for PHP 8.0
19+
- Support for `illuminate/support` v9
20+
- Support for `illuminate/session` v9
21+
722
## [3.0.0] - 2023-03-01
823
### Added
924
- Support for PHP 8.2.

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
],
2020
"license": "Apache-2.0",
2121
"require": {
22-
"php": "8.0.* | 8.1.* | 8.2.*",
23-
"illuminate/support": "^9.0 || ^10.0",
24-
"illuminate/session": "^9.0 || ^10.0",
25-
"psr/cache": "^1.0"
22+
"php": "8.1.* || 8.2.*|| 8.3.*",
23+
"illuminate/support": "^10.0 || ^11.0",
24+
"illuminate/session": "^10.0 || ^11.0",
25+
"psr/cache": "^1.0 || ^2.0 || ^3.0 "
2626
},
2727
"require-dev": {
2828
"mockery/mockery": "^1.0",
29-
"pestphp/pest": "^1.22",
30-
"laravel/pint": "^1.5 | ^1.6",
29+
"pestphp/pest": "^2.0",
30+
"laravel/pint": "^1.6",
3131
"phpstan/phpstan": "^1.10"
3232
},
3333
"extra": {

phpunit.xml

Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,17 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
verbose="true"
7-
convertDeprecationsToExceptions="true"
8-
>
9-
<testsuites>
10-
<testsuite name="State Test Suite">
11-
<directory suffix="Test.php">./tests</directory>
12-
</testsuite>
13-
</testsuites>
14-
<coverage processUncoveredFiles="true">
15-
<include>
16-
<directory suffix=".php">./src</directory>
17-
</include>
18-
<exclude>
19-
<file>./src/StateServiceProvider.php</file>
20-
<file>./src/StoreFacade.php</file>
21-
</exclude>
22-
</coverage>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
3+
<testsuites>
4+
<testsuite name="State Test Suite">
5+
<directory suffix="Test.php">./tests</directory>
6+
</testsuite>
7+
</testsuites>
8+
<source>
9+
<include>
10+
<directory suffix=".php">./src</directory>
11+
</include>
12+
<exclude>
13+
<file>./src/StateServiceProvider.php</file>
14+
<file>./src/StoreFacade.php</file>
15+
</exclude>
16+
</source>
2317
</phpunit>

0 commit comments

Comments
 (0)