forked from resque/php-resque
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Replace colinmollenhour/credis with PHP redis extension - Drop support for PHP 5.6, 7.0, 7.1, 7.2, 7.3, 7.4, and 8.0 - Bump psr/log to ^2.0 || ^3.0
- Loading branch information
1 parent
fe41c04
commit a63cb17
Showing
55 changed files
with
5,481 additions
and
4,115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: 2 | ||
|
||
jobs: | ||
build: | ||
docker: | ||
- image: cimg/php:8.1 | ||
resource_class: small | ||
|
||
steps: | ||
- checkout | ||
- run: sudo apt-get update -qq && sudo apt-get install --no-install-recommends --no-install-suggests -qq redis | ||
- run: '{ yes "" | sudo pecl install redis; } || true' | ||
- run: composer update | ||
- run: composer analyse | ||
- run: composer lint | ||
- run: composer test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
max_line_length = 120 | ||
trim_trailing_whitespace = true | ||
|
||
[{*.{json,php,xml},bin/**}] | ||
indent_size = 4 | ||
indent_style = space | ||
|
||
[*.yml] | ||
indent_size = 2 | ||
indent_style = space |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
vendor/ | ||
*.swp | ||
phpunit.xml | ||
composer.lock | ||
/.idea/ | ||
/.php-cs-fixer.cache | ||
/.phpunit.cache/ | ||
/composer.lock | ||
/phpunit.xml | ||
/vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use PhpCsFixer\Config; | ||
use PhpCsFixer\Finder; | ||
|
||
return (new Config()) | ||
->setFinder(Finder::create()->in(__DIR__)->name(['resque', 'resque-scheduler'])) | ||
->setRules([ | ||
'@PER' => true, | ||
]); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.