Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ jobs:
symfony-versions: 6.2.*
- php-versions: 8.2
symfony-versions: 6.2.*
- php-versions: 8.2
symfony-versions: 7.0.*
- php-versions: 8.3
symfony-versions: 7.0.*

name: PHP ${{ matrix.php-versions }} Test with Symfony ${{ matrix.symfony-versions }}
steps:
# —— Setup Github actions 🐙 —————————————————————————————————————————————
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# https://github.com/shivammathur/setup-php (community)
- name: Setup PHP, with composer and extensions
Expand All @@ -51,7 +55,7 @@ jobs:
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache composer dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
# Use composer.json for key, if composer.lock is not committed.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Easily configure cron through PHP.

If you use Symfony 4/5/6, you could use our [cool bundle](https://github.com/mybuilder/cronos-bundle) in order to configure your app jobs through fancy annotations!
If you use Symfony 4/5/6/7, you could use our [cool bundle](https://github.com/mybuilder/cronos-bundle) in order to configure your app jobs through fancy annotations!

## Setup and Configuration

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
],
"require": {
"php": ">=8.0.2",
"symfony/process": "^4.4|^5.4|^6.0"
"symfony/process": "^4.4|^5.4|^6.0|^7.0"
},
"suggest": {
"symfony/filesystem": "Allows using Symfony Filesystem"
},
"require-dev": {
"symfony/filesystem": "^4.4|^5.4|^6.0",
"symfony/filesystem": "^4.4|^5.4|^6.0|^7.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
Expand Down