Skip to content

Commit f49b28e

Browse files
committed
prepare maintenance release 2.2
1 parent 2182044 commit f49b28e

File tree

6 files changed

+38
-8
lines changed

6 files changed

+38
-8
lines changed

.changes/2.x/2.2.0.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
## 2.2.0 - 2025-07-02
3+
4+
### Removed
5+
6+
- support to PHP 8.1
7+
- support to Symfony 6.4 components (previous PHP 8.1 compatibility)
8+
9+
**Full Changelog**: [2.1.2...2.2.0](https://github.com/llaville/docker-php-toolbox/compare/2.1.2...2.2.0)

.github/workflows/gh-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
push:
66
branches:
77
- master
8-
- "2.1"
8+
- "2.2"
99
paths:
1010
- docs/**
1111
pull_request:
@@ -15,4 +15,4 @@ jobs:
1515
deploy:
1616
uses: llaville/.github/.github/workflows/gh-pages.yml@master
1717
with:
18-
destination-dir: "2.1"
18+
destination-dir: "2.2"

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
77
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
88
and is generated by [Changie](https://github.com/miniscruff/changie).
99

10+
## 2.2.0 - 2025-07-02
11+
12+
### Removed
13+
14+
- support to PHP 8.1
15+
- support to Symfony 6.4 components (previous PHP 8.1 compatibility)
16+
17+
**Full Changelog**: [2.1.2...2.2.0](https://github.com/llaville/docker-php-toolbox/compare/2.1.2...2.2.0)
18+
1019
## 2.1.2 - 2025-04-14
1120

1221
### Fixed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
|:--------------|:-------------------------------------------:|:-------------------------------------------------------------:|:---------------------------------------------------------:|:----------------------------------------------:|:----------------------------------------------------------------:|
99
| Stable v2.0.x | [![Branch 2.0][Branch_20x-img]][Branch_20x] | [![Minimum PHP Version)][PHPVersion_20x-img]][PHPVersion_20x] | [![Stable Version 2.0][Packagist_20x-img]][Packagist_20x] | [![License 2.0][License_20x-img]][License_20x] | [![Documentation 2.0][Documentation_20x-img]][Documentation_20x] |
1010
| Stable v2.1.x | [![Branch 2.1][Branch_21x-img]][Branch_21x] | [![Minimum PHP Version)][PHPVersion_21x-img]][PHPVersion_21x] | [![Stable Version 2.1][Packagist_21x-img]][Packagist_21x] | [![License 2.1][License_21x-img]][License_21x] | [![Documentation 2.1][Documentation_21x-img]][Documentation_21x] |
11+
| Stable v2.2.x | [![Branch 2.2][Branch_22x-img]][Branch_22x] | [![Minimum PHP Version)][PHPVersion_22x-img]][PHPVersion_22x] | [![Stable Version 2.2][Packagist_22x-img]][Packagist_22x] | [![License 2.2][License_22x-img]][License_22x] | [![Documentation 2.2][Documentation_22x-img]][Documentation_22x] |
1112

1213
[Branch_20x-img]: https://img.shields.io/badge/branch-2.0-orange
1314
[Branch_20x]: https://github.com/llaville/docker-php-toolbox/tree/2.0
@@ -31,9 +32,20 @@
3132
[Documentation_21x-img]: https://img.shields.io/badge/documentation-v2.1-green
3233
[Documentation_21x]: https://github.com/llaville/docker-php-toolbox/tree/2.1/docs
3334

35+
[Branch_22x-img]: https://img.shields.io/badge/branch-2.2-orange
36+
[Branch_22x]: https://github.com/llaville/docker-php-toolbox/tree/2.2
37+
[PHPVersion_22x-img]: https://img.shields.io/packagist/php-v/bartlett/docker-php-toolbox/2.2.0
38+
[PHPVersion_22x]: https://www.php.net/supported-versions.php
39+
[Packagist_22x-img]: https://img.shields.io/badge/packagist-v2.2.0-blue
40+
[Packagist_22x]: https://packagist.org/packages/bartlett/docker-php-toolbox
41+
[License_22x-img]: https://img.shields.io/packagist/l/bartlett/docker-php-toolbox
42+
[License_22x]: https://github.com/llaville/docker-php-toolbox/blob/2.2/LICENSE
43+
[Documentation_22x-img]: https://img.shields.io/badge/documentation-v2.2-green
44+
[Documentation_22x]: https://github.com/llaville/docker-php-toolbox/tree/2.2/docs
45+
3446
Easily install PHP extensions and tools in Docker containers.
3547

3648
## Documentation
3749

38-
All the documentation is available on [website](https://llaville.github.io/docker-php-toolbox/2.1/),
39-
generated from the [docs](https://github.com/llaville/docker-php-toolbox/tree/2.1/docs) folder.
50+
All the documentation is available on [website](https://llaville.github.io/docker-php-toolbox/2.2/),
51+
generated from the [docs](https://github.com/llaville/docker-php-toolbox/tree/2.2/docs) folder.

docs/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
* PHP 8.1 or greater
5+
* PHP 8.2 or greater
66
* ext-json
77

88
## Installation
@@ -13,7 +13,7 @@ Install the Docker PHP toolbox with [Composer](https://getcomposer.org/).
1313
If you don't know yet what is composer, have a look [on introduction](http://getcomposer.org/doc/00-intro.md).
1414

1515
```shell
16-
composer require bartlett/docker-php-toolbox ^2.1
16+
composer require bartlett/docker-php-toolbox ^2.2
1717
```
1818

1919
### With Git
@@ -22,5 +22,5 @@ The Docker PHP toolbox can be directly used from [GitHub](https://github.com/lla
2222
by cloning the repository into a directory of your choice.
2323

2424
```shell
25-
git clone -b 2.1 https://github.com/llaville/docker-php-toolbox.git
25+
git clone -b 2.2 https://github.com/llaville/docker-php-toolbox.git
2626
```

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
site_name: Docker PHP toolbox
3-
site_url: https://llaville.github.io/docker-php-toolbox/2.1
3+
site_url: https://llaville.github.io/docker-php-toolbox/2.2
44
repo_url: https://github.com/llaville/docker-php-toolbox # https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#repository
55
site_author: Laurent Laville
66
edit_uri: "" # hide edit button -- https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#edit-button

0 commit comments

Comments
 (0)