Skip to content

Commit

Permalink
feat: drop support of symfony < 4.4, drop support of php 7
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris8934 committed Jan 3, 2023
1 parent 747a422 commit aaf2c78
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
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 3/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, 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
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
"autoload": {
"psr-4": { "MyBuilder\\Cronos\\": "src" }
},
"autoload-dev": {
"psr-4": { "MyBuilder\\Cronos\\Tests\\": "tests/" }
},
"config": {
"bin-dir": "bin"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/Formatter/CronTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Formatter;
namespace MyBuilder\Cronos\Tests\Formatter;

use MyBuilder\Cronos\Formatter\Cron;
use PHPUnit\Framework\TestCase;
Expand Down
2 changes: 1 addition & 1 deletion tests/Updater/CronUpdaterTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Updater;
namespace MyBuilder\Cronos\Tests\Updater;

use MyBuilder\Cronos\Formatter\Cron;
use MyBuilder\Cronos\Updater\CronManipulator;
Expand Down

0 comments on commit aaf2c78

Please sign in to comment.