Skip to content

Commit ce87795

Browse files
committed
Merge branch 'develop' minor
- Upgrade packages for php7.3 and newer
2 parents ccd826c + a679317 commit ce87795

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/php.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
strategy:
99
matrix:
1010
operating-system: [ubuntu-latest]
11-
php-versions: ['7.1', '7.2', '7.3', '7.4']
11+
php-versions: ['7.3', '7.4', '8.0']
1212
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v1
16+
uses: actions/checkout@v2
1717

1818
- name: Setup PHP
19-
uses: shivammathur/setup-php@v1
19+
uses: shivammathur/setup-php@v2
2020
with:
2121
php-version: ${{ matrix.php-versions }}
2222
extensions: mbstring, intl, zip

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![version](https://img.shields.io/badge/Version-1.0.1-brightgreen.svg)](https://github.com/SimonDevelop/sirene/releases/tag/1.0.1)
2-
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.1-8892BF.svg)](https://php.net/)
1+
[![version](https://img.shields.io/badge/Version-1.1.0-brightgreen.svg)](https://github.com/SimonDevelop/sirene/releases/tag/1.1.0)
2+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.3-8892BF.svg)](https://php.net/)
33
[![Github Actions PHP](https://github.com/SimonDevelop/sirene/workflows/PHP/badge.svg)](https://github.com/SimonDevelop/sirene/actions)
44
[![GitHub license](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/SimonDevelop/sirene/blob/master/LICENSE)
55

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
},
2727
"require": {
2828
"ext-json": "*",
29-
"php": ">=7.1"
29+
"php": ">=7.3"
3030
},
3131
"require-dev": {
32-
"squizlabs/php_codesniffer": "^3.1",
33-
"phpunit/phpunit": "^7.5.17",
34-
"phpstan/phpstan": "^0.11.19"
32+
"squizlabs/php_codesniffer": "4.0.x-dev",
33+
"phpunit/phpunit": "^9.5.8",
34+
"phpstan/phpstan": "^0.12.94"
3535
},
3636
"scripts": {
3737
"phpcs": "phpcs -s",
@@ -41,7 +41,7 @@
4141
"@phpstan-src",
4242
"@phpstan-tests"
4343
],
44-
"phpunit": "phpunit --colors",
44+
"phpunit": "phpunit --colors --do-not-cache-result",
4545
"test": [
4646
"@phpunit",
4747
"@phpcs",

0 commit comments

Comments
 (0)