Skip to content

Commit

Permalink
Fix yii 2.0.13 compatibility issue #75 (#76) (#83)
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
petrabarus authored Jun 20, 2018
1 parent 9007970 commit 6bc44e1
Show file tree
Hide file tree
Showing 5 changed files with 541 additions and 340 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ php:
- hhvm
- 7
- 7.1
- 7.2

services:
- mysql
Expand Down
65 changes: 33 additions & 32 deletions composer.json
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/"
}
}
}
Loading

0 comments on commit 6bc44e1

Please sign in to comment.