Skip to content

Commit 0ab3769

Browse files
committed
update ci & readme file
1 parent c5f6185 commit 0ab3769

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
php-version:
2020
- "8.0"
21-
- "8.1"
21+
- "8.2"
2222
dependencies:
2323
- "highest"
2424
stability:
@@ -31,7 +31,7 @@ jobs:
3131
# Tests the highest set of dependencies
3232
- dependencies: "highest"
3333
stability: "dev"
34-
php-version: "8.1"
34+
php-version: "8.2"
3535

3636
steps:
3737
- name: "Checkout"

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
/composer.lock
22
/vendor/
33
/.idea
4+
/.devenv
45
.phpunit.cache
56
.php-cs-fixer.cache
67
.phpunit.result.cache
7-
coverage.xml
8+
coverage.xml
9+
.result
10+
flake.lock

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class PostController
6767
### Validations
6868
- Response header
6969
```
70-
Content-Type: application/problem+json; charset=utf-8
70+
Content-Type: application/json; charset=utf-8
7171
```
7272
- Response body
7373
```json

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
"license": "MIT",
2020
"require": {
2121
"php": "^8.0",
22-
"symfony/http-kernel": "^6.2 | ^7.0",
23-
"symfony/http-foundation": "^6.2 |^7.0",
24-
"symfony/serializer": "^6.2 |^7.0",
25-
"symfony/validator": "^6.2 |^7.0",
26-
"symfony/dependency-injection": "^6.2 |^7.0",
27-
"symfony/property-access": "^6.2 |^7.0"
22+
"symfony/http-kernel": "^6.2|^7.0",
23+
"symfony/http-foundation": "^6.2|^7.0",
24+
"symfony/serializer": "^6.2|^7.0",
25+
"symfony/validator": "^6.2|^7.0",
26+
"symfony/dependency-injection": "^6.2|^7.0",
27+
"symfony/property-access": "^6.2|^7.0"
2828
},
2929
"require-dev": {
3030
"phpunit/phpunit": "^10.0",
31-
"symfony/framework-bundle": "^6.2 | ^7.0",
31+
"symfony/framework-bundle": "^6.2|^7.0",
3232
"friendsofphp/php-cs-fixer": "^3.5",
3333
"phpstan/phpstan": "^1.9"
3434
},

0 commit comments

Comments
 (0)