Skip to content

Commit a63ba83

Browse files
author
RobertGroot
committed
Progress
1 parent e119fd5 commit a63ba83

27 files changed

+1201
-10
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/vendor/
22
.php-cs.cache
3+
.phpunit.result.cache

composer.json

+12-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"license": "MIT",
66
"autoload": {
77
"psr-4": {
8-
"Xolvio\\OpenApiGenerator\\": "src/"
8+
"Xolvio\\OpenApiGenerator\\": "src/",
9+
"Xolvio\\OpenApiGenerator\\Test\\": "tests/Dummy/"
910
}
1011
},
1112
"extra": {
@@ -29,6 +30,9 @@
2930
],
3031
"larastan": [
3132
"vendor/bin/phpstan analyse"
33+
],
34+
"test": [
35+
"vendor/bin/pest"
3236
]
3337
},
3438
"require": {
@@ -40,6 +44,12 @@
4044
"require-dev": {
4145
"friendsofphp/php-cs-fixer": "^3.8",
4246
"nunomaduro/larastan": "^2.1",
43-
"orchestra/testbench": "^7.5"
47+
"orchestra/testbench": "^7.5",
48+
"pestphp/pest": "^1.21"
49+
},
50+
"config": {
51+
"allow-plugins": {
52+
"pestphp/pest-plugin": true
53+
}
4454
}
4555
}

0 commit comments

Comments
 (0)