Skip to content

Commit

Permalink
Merge branch 'release/4.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
matiux committed May 29, 2023
2 parents bea273b + dd770e0 commit 04d7d02
Show file tree
Hide file tree
Showing 184 changed files with 1,413 additions and 1,295 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'

- name: Checkout code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: "installing PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.0"
php-version: "8.2"
ini-values: memory_limit=-1
tools: composer:v2, cs2pr
extensions: bcmath, mbstring, intl, sodium, json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependencies-vulnerability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'
tools: composer:v2

- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: "installing PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.0"
php-version: "8.2"
ini-values: memory_limit=-1
tools: composer:v2, cs2pr
extensions: bcmath, mbstring, intl, sodium, json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: "installing PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.0"
php-version: "8.2"
ini-values: memory_limit=-1
tools: composer:v2, cs2pr
extensions: bcmath, mbstring, intl, sodium, json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'

- name: Checkout code
uses: "actions/checkout@v2"
Expand Down
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
"domain",
"message",
"aggregate",
"message publisher"
"message publisher",
"message consumer"
],
"description": "Basic Domain Driven Design utils",
"require": {
"php": ">=8.0",
"php": ">=8.2",
"ext-json": "*",
"ramsey/uuid": "^3.7|^4.0",
"symfony/options-resolver": "^5.0 | ^4.0 | ^6.0 | ^6.1",
Expand All @@ -25,7 +26,7 @@
"matiux/php-project-autopilot": "dev-master",
"mockery/mockery": "^1.3",
"nyholm/dsn": "^2.0",
"phpunit/phpunit": "^9",
"phpunit/phpunit": "^10",
"psalm/plugin-mockery": "^1.1",
"psalm/plugin-phpunit": "^0.18",
"roave/security-advisories": "dev-latest",
Expand All @@ -43,7 +44,7 @@
],
"autoload": {
"psr-4": {
"DDDStarterPack\\": "src/Matiux/DDDStarterPack"
"DDDStarterPack\\": "src/Matiux/DDDStarterPack/"
}
},
"autoload-dev": {
Expand Down
Loading

0 comments on commit 04d7d02

Please sign in to comment.