File tree 2 files changed +24
-0
lines changed
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,13 @@ test:
24
24
php $(PHPARGS ) $(XPHPARGS ) vendor/bin/phpunit --verbose --colors=always $(TESTCASE )
25
25
php $(PHPARGS ) $(XPHPARGS ) bin/php-openapi validate tests/spec/data/recursion.json
26
26
php $(PHPARGS ) $(XPHPARGS ) bin/php-openapi validate tests/spec/data/recursion2.yaml
27
+ php $(PHPARGS ) $(XPHPARGS ) bin/php-openapi validate tests/spec/data/empty-maps.json
27
28
28
29
lint :
29
30
php $(PHPARGS ) $(XPHPARGS ) bin/php-openapi validate tests/spec/data/reference/playlist.json
30
31
php $(PHPARGS ) $(XPHPARGS ) bin/php-openapi validate tests/spec/data/recursion.json
31
32
php $(PHPARGS ) $(XPHPARGS ) bin/php-openapi validate tests/spec/data/recursion2.yaml
33
+ php $(PHPARGS ) $(XPHPARGS ) bin/php-openapi validate tests/spec/data/empty-maps.json
32
34
node_modules/.bin/speccy lint tests/spec/data/reference/playlist.json
33
35
node_modules/.bin/speccy lint tests/spec/data/recursion.json
34
36
Original file line number Diff line number Diff line change
1
+ {
2
+ "openapi" : " 3.0.1" ,
3
+ "info" : {
4
+ "title" : " test" ,
5
+ "version" : " 1.0"
6
+ },
7
+ "paths" : {
8
+ "/products" : {
9
+ "description" : " default" ,
10
+ "get" : {
11
+ "responses" : {
12
+ "200" : {
13
+ "description" : " Products" ,
14
+ "headers" : {},
15
+ "content" : {},
16
+ "links" : {}
17
+ }
18
+ }
19
+ }
20
+ }
21
+ }
22
+ }
You can’t perform that action at this time.
0 commit comments