Skip to content

Commit ee1f240

Browse files
Update requirements
1 parent 0346c66 commit ee1f240

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to `sebastiaanluca/php-pipe-operator` will be documented in
44

55
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
66

7+
## 7.0.0 (2025-02-07)
8+
9+
### Added
10+
11+
- Added support for PHP 8.4
12+
13+
### Removed
14+
15+
- Dropped support for PHP 8.2
16+
717
## 6.0.0 (2023-02-06)
818

919
### Added

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Total downloads][downloads-badge]][link-packagist]
77
[![Total stars][stars-badge]][link-github]
88

9-
[![Read my blog][blog-link-badge]][link-blog]
9+
[![Visit my website][website-link-badge]][link-website]
1010
[![View my other packages and projects][packages-link-badge]][link-packages]
1111
[![Follow @sebastiaanluca on Twitter][twitter-profile-badge]][link-twitter]
1212
[![Share this package on Twitter][twitter-share-badge]][link-twitter-share]
@@ -332,18 +332,17 @@ If you discover any security related issues, please email [hello@sebastiaanluca.
332332

333333
## About
334334

335-
My name is Sebastiaan and I'm a freelance Laravel developer specializing in building custom Laravel applications. Check out my [portfolio][link-portfolio] for more information, [my blog][link-blog] for the latest tips and tricks, and my other [packages][link-packages] to kick-start your next project.
335+
My name is Sebastiaan and I'm a freelance back-end developer specializing in building custom Laravel web apps. Check out my [website][link-website] for more information and my other [packages][link-packages] to kick-start your next project.
336336

337337
Have a project that could use some guidance? Send me an e-mail at [[email protected]][link-author-email]!
338338

339-
340339
[version-badge]: https://img.shields.io/packagist/v/sebastiaanluca/php-pipe-operator.svg?label=stable
341340
[license-badge]: https://img.shields.io/badge/license-MIT-informational.svg
342341
[githubaction-badge]: https://github.com/sebastiaanluca/php-pipe-operator/actions/workflows/test.yml/badge.svg?branch=master
343342
[downloads-badge]: https://img.shields.io/packagist/dt/sebastiaanluca/php-pipe-operator.svg?color=brightgreen
344343
[stars-badge]: https://img.shields.io/github/stars/sebastiaanluca/php-pipe-operator.svg?color=brightgreen
345344

346-
[blog-link-badge]: https://img.shields.io/badge/link-blog-lightgrey.svg
345+
[website-link-badge]: https://img.shields.io/badge/link-website-lightgrey.svg
347346
[packages-link-badge]: https://img.shields.io/badge/link-other_packages-lightgrey.svg
348347
[twitter-profile-badge]: https://img.shields.io/twitter/follow/sebastiaanluca.svg?style=social
349348
[twitter-share-badge]: https://img.shields.io/twitter/url/http/shields.io.svg?style=social
@@ -354,8 +353,7 @@ Have a project that could use some guidance? Send me an e-mail at [hello@sebasti
354353
[link-twitter-share]: https://twitter.com/intent/tweet?text=Use%20PHP%27s%20pipe%20operator%20now!%20https%3A%2F%2Fgithub.com%2Fsebastiaanluca%2Fphp-pipe-operator%20via%20%40sebastiaanluca
355354
[link-contributors]: ../../contributors
356355

357-
[link-portfolio]: https://sebastiaanluca.com
358-
[link-blog]: https://sebastiaanluca.com/blog
356+
[link-website]: https://sebastiaanluca.com
359357
[link-packages]: https://packagist.org/packages/sebastiaanluca
360358
[link-twitter]: https://twitter.com/sebastiaanluca
361359
[link-github-profile]: https://github.com/sebastiaanluca

composer.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
}
2020
],
2121
"require": {
22-
"php": "~8.1|~8.2"
22+
"php": "^8.3.0"
2323
},
2424
"require-dev": {
25-
"ext-mbstring": "~8.1|~8.2",
25+
"ext-mbstring": "^8.3.0",
2626
"friendsofphp/php-cs-fixer": "^3.14",
2727
"phpunit/phpunit": "^9.6"
2828
},
@@ -46,19 +46,21 @@
4646
"prefer-stable": true,
4747
"scripts": {
4848
"composer:validate": "@composer validate --strict --ansi",
49-
"test": "vendor/bin/phpunit",
49+
5050
"lint": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix --dry-run --diff --ansi",
5151
"fix": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix --ansi",
52-
"check": [
52+
53+
"test": [
5354
"@composer:validate",
5455
"@lint",
5556
"@test"
5657
],
57-
"check:lowest": [
58+
59+
"test:lowest": [
5860
"composer update --prefer-lowest --prefer-dist --no-interaction --ansi",
5961
"@check"
6062
],
61-
"check:stable": [
63+
"test:stable": [
6264
"composer update --prefer-stable --prefer-dist --no-interaction --ansi",
6365
"@check"
6466
]

0 commit comments

Comments
 (0)