Skip to content

Commit f5e0e36

Browse files
Port Sf 7 support into 3.x branch (#56)
* Drop PHP 7.x-8.0, add PHP 8.2-8.3 support (#55) * Drop PHP 7.x-8.0, add PHP 8.2-8.3 support * Add /.phpunit.result.cache to gitignore * Allow Symfony 7 support (#52) * Allow Symfony 7 support * Symfony 7 support (#54) * 🐛 Add prophecy-phpunit (v10) * 🐛 Fix assert regex * 🐛 Fix setMethods --------- Co-authored-by: Damien Lagae <damienlagae@gmail.com> * Update link to the docs with HTTPS link (#51) * Drop bad files * Drop lowest support --------- Co-authored-by: Damien Lagae <damienlagae@gmail.com>
1 parent c0e75e5 commit f5e0e36

File tree

4 files changed

+11
-21
lines changed

4 files changed

+11
-21
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,14 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php: [ '8.0', '8.1' ]
13+
php: [ '8.1', '8.2', '8.3' ]
1414
strategy: [ 'highest' ]
1515
sf_version: ['5.*', '6.*']
1616
include:
17-
- php: 7.2
18-
sf_version: '4.*'
19-
- php: 7.3
20-
sf_version: '3.*'
21-
- php: 7.3
22-
sf_version: '4.*'
23-
- php: 7.3
24-
sf_version: '5.*'
25-
- php: 7.4
26-
strategy: 'lowest'
27-
- php: 7.4
28-
sf_version: '4.*'
29-
- php: 7.4
30-
sf_version: '5.*'
31-
- php: 8.1
32-
strategy: 'lowest'
17+
- php: 8.2
18+
sf_version: '7.*'
19+
- php: 8.3
20+
sf_version: '7.*'
3321
steps:
3422
- name: Checkout code
3523
uses: actions/checkout@v2

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/.php-cs-fixer.cache
2+
/.phpunit.result.cache
23
/behat.yml
34
/build/
45
/composer.lock

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ $ composer require php-translation/common
1515

1616
## Documentation
1717

18-
Read the full documentation at [https://php-translation.readthedocs.io/](https://php-translation.readthedocs.io/en/latest/).
18+
Read the full documentation at [https://php-translation.readthedocs.io](https://php-translation.readthedocs.io/en/latest/).

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@
1010
],
1111
"require": {
1212
"php": ">=7.2",
13-
"symfony/translation": " ^3.4 || ^4.3 || ^5.0 || ^6.0"
13+
"symfony/translation": " ^3.4 || ^4.3 || ^5.0 || ^6.0 || ^7.0"
1414
},
1515
"require-dev": {
16-
"symfony/phpunit-bridge": "^4.3 || ^5.0 || ^6.0",
17-
"phpunit/phpunit": ">=8.5.23"
16+
"symfony/framework-bundle": " ^3.4 || ^4.3 || ^5.0 || ^6.0 || ^7.0",
17+
"phpunit/phpunit": ">=8.5.23",
18+
"phpspec/prophecy-phpunit": "^2.1"
1819
},
1920
"autoload": {
2021
"psr-4": {

0 commit comments

Comments
 (0)