Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements #49

Merged
merged 2 commits into from
Jun 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ indent_style = tab
indent_size = tab
tab_width = 4

[{*.yml,*.md}]
[{*.json, *.yaml, *.yml, *.md}]
indent_style = space
indent_size = 2
4 changes: 2 additions & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github: [f3l1x]
custom: ["https://contributte.org/partners.html"]
github: [ f3l1x ]
custom: [ "https://contributte.org/partners.html" ]
48 changes: 24 additions & 24 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: "build"
on:
pull_request:
paths-ignore:
- ".docs/**"
- ".docs/**"
push:
branches:
- "master"
- "*"
schedule:
- cron: "0 8 * * 1" # At 08:00 on Monday

Expand All @@ -23,8 +23,8 @@ jobs:

strategy:
matrix:
php-version: ["7.4"]
operating-system: ["ubuntu-latest"]
php-version: [ "7.4" ]
operating-system: [ "ubuntu-latest" ]
fail-fast: false

steps:
Expand Down Expand Up @@ -82,8 +82,8 @@ jobs:

strategy:
matrix:
php-version: ["7.4"]
operating-system: ["ubuntu-latest"]
php-version: [ "7.4" ]
operating-system: [ "ubuntu-latest" ]
fail-fast: false

steps:
Expand Down Expand Up @@ -137,18 +137,18 @@ jobs:
runs-on: "${{ matrix.operating-system }}"

services:
mysql:
image: mysql:5.7
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: tests
ports:
- 3306:3306
mysql:
image: mysql:5.7
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: tests
ports:
- 3306:3306

strategy:
matrix:
php-version: ["7.4", "8.0"]
operating-system: ["ubuntu-latest"]
php-version: [ "7.4", "8.0" ]
operating-system: [ "ubuntu-latest" ]
composer-args: [ "" ]
include:
- php-version: "7.4"
Expand Down Expand Up @@ -212,18 +212,18 @@ jobs:
runs-on: "${{ matrix.operating-system }}"

services:
mysql:
image: mysql:5.7
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: tests
ports:
- 3306:3306
mysql:
image: mysql:5.7
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: tests
ports:
- 3306:3306

strategy:
matrix:
php-version: ["7.4"]
operating-system: ["ubuntu-latest"]
php-version: [ "7.4" ]
operating-system: [ "ubuntu-latest" ]
fail-fast: false

if: "github.event_name == 'push'"
Expand Down
104 changes: 56 additions & 48 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,58 @@
{
"name": "contributte/rabbitmq",
"description": "Nette extension for RabbitMQ (using BunnyPHP)",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/contributte/rabbitmq",
"keywords": ["rabbitmq","rabbit","bunnyphp","bunny","nette","extension","php"],
"support": {
"issues": "https://github.com/contributte/rabbitmq/issues"
},
"authors": [
{
"name": "Pavel Janda"
}
],
"autoload": {
"psr-4": {
"Contributte\\RabbitMQ\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contributte\\RabbitMQ\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.4",
"bunny/bunny": "^0.2.4 || ^0.3 || ^0.4 || ^0.5",
"symfony/console": "~3.3 || ^4.0 || ^5.0",
"nette/di": "^2.4.17 || ^3.0.7",
"nette/utils": "^2.5.4 || ^3.2.0"
},
"require-dev": {
"ninjify/nunjuck": "^0.4",
"nette/neon": "^2.4.3 || ^3.2.1",
"mockery/mockery": "^1.3.3",
"gamee/php-code-checker-rules": "^2.0",
"tracy/tracy": "^2.5"
},
"suggest": {
"tracy/tracy": "Allows using tracy bar panel"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "9.0.x-dev"
}
}
"name": "contributte/rabbitmq",
"description": "Nette extension for RabbitMQ (using BunnyPHP)",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/contributte/rabbitmq",
"keywords": [
"rabbitmq",
"rabbit",
"bunnyphp",
"bunny",
"nette",
"extension",
"php"
],
"support": {
"issues": "https://github.com/contributte/rabbitmq/issues"
},
"authors": [
{
"name": "Pavel Janda"
}
],
"autoload": {
"psr-4": {
"Contributte\\RabbitMQ\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contributte\\RabbitMQ\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.4",
"bunny/bunny": "^0.2.4 || ^0.3 || ^0.4 || ^0.5",
"symfony/console": "~3.3 || ^4.0 || ^5.0",
"nette/di": "^2.4.17 || ^3.0.7",
"nette/utils": "^2.5.4 || ^3.2.0"
},
"require-dev": {
"ninjify/nunjuck": "^0.4",
"nette/neon": "^2.4.3 || ^3.2.1",
"mockery/mockery": "^1.3.3",
"gamee/php-code-checker-rules": "^2.0",
"tracy/tracy": "^2.5"
},
"suggest": {
"tracy/tracy": "Allows using tracy bar panel"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "9.0.x-dev"
}
}
}