Skip to content

Commit

Permalink
update ci & readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmok committed Mar 21, 2024
1 parent d02967c commit 8571292
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
php-version:
- "8.0"
- "8.1"
- "8.2"
dependencies:
- "highest"
stability:
Expand All @@ -31,7 +31,7 @@ jobs:
# Tests the highest set of dependencies
- dependencies: "highest"
stability: "dev"
php-version: "8.1"
php-version: "8.2"

steps:
- name: "Checkout"
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
/composer.lock
/vendor/
/.idea
/.devenv
.phpunit.cache
.php-cs-fixer.cache
.phpunit.result.cache
coverage.xml
coverage.xml
.result
flake.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class PostController
### Validations
- Response header
```
Content-Type: application/problem+json; charset=utf-8
Content-Type: application/json; charset=utf-8
```
- Response body
```json
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
"license": "MIT",
"require": {
"php": "^8.0",
"symfony/http-kernel": "^6.2 | ^7.0",
"symfony/http-foundation": "^6.2 |^7.0",
"symfony/serializer": "^6.2 |^7.0",
"symfony/validator": "^6.2 |^7.0",
"symfony/dependency-injection": "^6.2 |^7.0",
"symfony/property-access": "^6.2 |^7.0"
"symfony/http-kernel": "^6.2|^7.0",
"symfony/http-foundation": "^6.2|^7.0",
"symfony/serializer": "^6.2|^7.0",
"symfony/validator": "^6.2|^7.0",
"symfony/dependency-injection": "^6.2|^7.0",
"symfony/property-access": "^6.2|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"symfony/framework-bundle": "^6.2 | ^7.0",
"symfony/framework-bundle": "^6.2|^7.0",
"friendsofphp/php-cs-fixer": "^3.5",
"phpstan/phpstan": "^1.9"
},
Expand Down

0 comments on commit 8571292

Please sign in to comment.