Skip to content

Commit

Permalink
Port Sf 7 support into 3.x branch (#56)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>

* Update link to the docs with HTTPS link (#51)

* Drop bad files

* Drop lowest support

---------

Co-authored-by: Damien Lagae <[email protected]>
  • Loading branch information
bocharsky-bw and damienlagae authored Jan 29, 2024
1 parent c0e75e5 commit f5e0e36
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 21 deletions.
22 changes: 5 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.0', '8.1' ]
php: [ '8.1', '8.2', '8.3' ]
strategy: [ 'highest' ]
sf_version: ['5.*', '6.*']
include:
- php: 7.2
sf_version: '4.*'
- php: 7.3
sf_version: '3.*'
- php: 7.3
sf_version: '4.*'
- php: 7.3
sf_version: '5.*'
- php: 7.4
strategy: 'lowest'
- php: 7.4
sf_version: '4.*'
- php: 7.4
sf_version: '5.*'
- php: 8.1
strategy: 'lowest'
- php: 8.2
sf_version: '7.*'
- php: 8.3
sf_version: '7.*'
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/.php-cs-fixer.cache
/.phpunit.result.cache
/behat.yml
/build/
/composer.lock
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ $ composer require php-translation/common

## Documentation

Read the full documentation at [https://php-translation.readthedocs.io/](https://php-translation.readthedocs.io/en/latest/).
Read the full documentation at [https://php-translation.readthedocs.io](https://php-translation.readthedocs.io/en/latest/).
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
],
"require": {
"php": ">=7.2",
"symfony/translation": " ^3.4 || ^4.3 || ^5.0 || ^6.0"
"symfony/translation": " ^3.4 || ^4.3 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.3 || ^5.0 || ^6.0",
"phpunit/phpunit": ">=8.5.23"
"symfony/framework-bundle": " ^3.4 || ^4.3 || ^5.0 || ^6.0 || ^7.0",
"phpunit/phpunit": ">=8.5.23",
"phpspec/prophecy-phpunit": "^2.1"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit f5e0e36

Please sign in to comment.