Skip to content

Commit 7d8ca1c

Browse files
committed
Add PHP 8.1 support
1 parent b8f0c85 commit 7d8ca1c

File tree

6 files changed

+313
-305
lines changed

6 files changed

+313
-305
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ jobs:
8585
- '7.3'
8686
- '7.4'
8787
- '8.0'
88+
- '8.1'
8889

8990
steps:
9091
- name: "Checkout code"

.github/workflows/heartbeat.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ name: Packagist heartbeat
22

33
on:
44
schedule:
5-
- cron: '1/16 3-9 * * *'
5+
- cron: '1/16 4-10 * * *'
66
workflow_dispatch:
77

88
jobs:
9-
package-test:
9+
package-test2:
1010
name: "Composer package install test"
1111
runs-on: "ubuntu-latest"
1212
strategy:
1313
matrix:
1414
php-version:
15-
- '8.0'
15+
- '8.1'
1616
steps:
1717
- name: Install dependencies
18-
run: composer require ouxsoft/phpmarkup
18+
run: echo "{}" >> composer.json && composer require ouxsoft/phpmarkup

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ All releases must adhere to [SemVer 2](https://semver.org/) naming convention an
1111
## PHPMarkup [Unreleased]
1212
Released: TBA. Notable changes:
1313

14+
## PHPMarkup 4.3.0
15+
Released: 2022-01-01. Notable changes:
16+
* Changed: Add PHP 8.1 support.
17+
1418
## PHPMarkup 4.2.6
1519
Released: 2021-10-08. Notable changes:
1620
* Changed: Marker attribute removal to end routine.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Docs Status](https://readthedocs.org/projects/phpmarkup/badge/?version=latest&style=flat)](https://readthedocs.org/projects/phpmarkup)
77

88
[![Latest Stable Version](https://img.shields.io/packagist/v/Ouxsoft/phpmarkup.svg)](https://packagist.org/packages/Ouxsoft/phpmarkup)
9-
[![PHP Versions Supported](https://img.shields.io/badge/php-7.3%20to%208.0-777bb3.svg?logo=php&logoColor=white&labelColor=555555)](https://api.travis-ci.com/Ouxsoft/phpmarkup.svg?branch=master&status=passed)
9+
[![PHP Versions Supported](https://img.shields.io/badge/php-7.3%20to%208.1-777bb3.svg?logo=php&logoColor=white&labelColor=555555)](https://api.travis-ci.com/Ouxsoft/phpmarkup.svg?branch=master&status=passed)
1010
[![License](https://img.shields.io/badge/license-MIT-428f7e.svg?logo=open%20source%20initiative&logoColor=white&labelColor=555555)](https://github.com/Ouxsoft/phpmarkup/blob/master/LICENSE)
1111
[![Total Downloads](https://img.shields.io/packagist/dt/Ouxsoft/phpmarkup.svg)](https://packagist.org/packages/Ouxsoft/phpmarkup)
1212

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"issues": "https://github.com/Ouxsoft/phpmarkup/issues"
1818
},
1919
"require": {
20-
"php": "^7.3 || ~8.0.0",
20+
"php": "^7.3 || ^8.0",
2121
"ext-dom": "*",
2222
"ext-json": "*",
2323
"ext-libxml": "*",

0 commit comments

Comments
 (0)