-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Fix yii 2.0.13 compatibility issue #75 * use \yii\base\BaseObject instead of \yii\base\Object * fix wrong type hints * change composer minimum stability from dev to stable * require yii >= 2.0.13 * require pcntl extension * Limit symfony process to version 2.x (#75) * test also version 7.2 with Travis * Limit dbunit to version 1.x (#75) * Update composer.lock (#75) * Update composer.lock (#75)
- Loading branch information
1 parent
9007970
commit 6bc44e1
Showing
5 changed files
with
541 additions
and
340 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 |
---|---|---|
|
@@ -6,6 +6,7 @@ php: | |
- hhvm | ||
- 7 | ||
- 7.1 | ||
- 7.2 | ||
|
||
services: | ||
- mysql | ||
|
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,35 +1,36 @@ | ||
{ | ||
"name": "urbanindo/yii2-queue", | ||
"description": "Queue component for Yii2", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Petra Barus", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"require": { | ||
"php": ">=5.5.0", | ||
"yiisoft/yii2": "*", | ||
"aws/aws-sdk-php": ">=2.4", | ||
"symfony/process": ">=2.4", | ||
"jeremeamia/SuperClosure": "~2.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.6.*", | ||
"phpunit/dbunit": ">=1.2", | ||
"phpunit/php-code-coverage": "2.2.4", | ||
"fzaninotto/faker": "dev-master", | ||
"flow/jsonpath": "dev-master", | ||
"yiisoft/yii2-coding-standards": "*", | ||
"yiisoft/yii2-redis": "*", | ||
"videlalvaro/php-amqplib": "2.5.*", | ||
"squizlabs/php_codesniffer": "2.*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"UrbanIndo\\Yii2\\Queue\\": "src/" | ||
} | ||
"name": "urbanindo/yii2-queue", | ||
"description": "Queue component for Yii2", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Petra Barus", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": ">=5.5.0", | ||
"ext-pcntl": "*", | ||
"yiisoft/yii2": ">=2.0.13", | ||
"aws/aws-sdk-php": ">=2.4", | ||
"symfony/process": "~2.0", | ||
"jeremeamia/SuperClosure": "~2.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.6.*", | ||
"phpunit/dbunit": "~1.0", | ||
"phpunit/php-code-coverage": "2.2.4", | ||
"fzaninotto/faker": "dev-master", | ||
"flow/jsonpath": "dev-master", | ||
"yiisoft/yii2-coding-standards": "*", | ||
"yiisoft/yii2-redis": "*", | ||
"videlalvaro/php-amqplib": "2.5.*", | ||
"squizlabs/php_codesniffer": "2.*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"UrbanIndo\\Yii2\\Queue\\": "src/" | ||
} | ||
} | ||
} |
Oops, something went wrong.