Skip to content
This repository has been archived by the owner on Dec 9, 2022. It is now read-only.

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bupy7 committed Feb 11, 2020
1 parent 5df78d9 commit fcfd87a
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 49 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/.php_cs.cache
/phpunit.xml.dist
/build
/.idea
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: php

php:
- '7.1'
- '7.2'
Expand All @@ -9,4 +10,4 @@ before_script:
- composer install --no-interaction

after_script:
- vendor/bin/coveralls -v
- vendor/bin/php-coveralls -v
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
zf-queue
========

1.0.3 [2020-02-11]
------------------

Enh: Support PHP 7.3, 7.4.

1.0.2 [2017-11-23]
------------------

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017, Vasily Belosludcev
Copyright (c) 2017, Vasily Belosloodcev
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
Expand Down
93 changes: 46 additions & 47 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,49 @@
{
"name": "bupy7/zf-queue",
"description": "Queue module for Zend Framework 3.",
"version": "1.0.2",
"license": "BSD-3-Clause",
"keywords": [
"zend",
"queue",
"zf",
"zf3",
"task",
"manager",
"async"
],
"authors": [
{
"name": "Vasily Belosludcev",
"email": "bupy765@gmail.com",
"homepage": "http://mihaly4.ru"
}
],
"require": {
"php": "^7.1",
"container-interop/container-interop": "^1.2",
"zendframework/zend-stdlib": "^3.1",
"zendframework/zend-modulemanager": "^2.7",
"zendframework/zend-servicemanager": "^3.1"
},
"require-dev": {
"zendframework/zend-test": "^3.0",
"friendsofphp/php-cs-fixer": "^2.4",
"phpunit/phpunit": "^6.0",
"satooshi/php-coveralls": "^1.0"
},
"autoload": {
"psr-4": {
"Bupy7\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bupy7\\Queue\\Test\\": "test/"
}
},
"scripts": {
"test": "php vendor/bin/phpunit --debug --verbose",
"test:no-coverage": "php vendor/bin/phpunit --debug --verbose --no-coverage",
"fixer": "php vendor/bin/php-cs-fixer fix --config=phpcs.php"
"name": "bupy7/zf-queue",
"description": "Queue module for Zend Framework 3.",
"version": "1.0.3",
"license": "BSD-3-Clause",
"keywords": [
"zend",
"queue",
"zf",
"zf3",
"task",
"manager",
"async"
],
"authors": [
{
"name": "Vasily Beloslodcev",
"email": "vasily.belosloodcev@gmail.com"
}
],
"require": {
"php": "^7.1",
"container-interop/container-interop": "^1.2",
"zendframework/zend-stdlib": "^3.1",
"zendframework/zend-modulemanager": "^2.7",
"zendframework/zend-servicemanager": "^3.1"
},
"require-dev": {
"zendframework/zend-test": "^3.0",
"friendsofphp/php-cs-fixer": "^2.4",
"phpunit/phpunit": "^6.0",
"php-coveralls/php-coveralls": "^2.2"
},
"autoload": {
"psr-4": {
"Bupy7\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bupy7\\Queue\\Test\\": "test/"
}
},
"scripts": {
"test": "php vendor/bin/phpunit --debug --verbose",
"test:no-coverage": "php vendor/bin/phpunit --debug --verbose --no-coverage",
"fixer": "php vendor/bin/php-cs-fixer fix --config=phpcs.php"
}
}

0 comments on commit fcfd87a

Please sign in to comment.