File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ fix-style: php-cs-fixer.phar
40
40
cli :
41
41
docker-compose run --rm php bash
42
42
43
- install :
43
+ install : composer.json package.json
44
44
$(DOCKER_PHP ) composer install --prefer-dist --no-interaction --no-progress --ansi
45
45
$(DOCKER_NODE ) yarn install
46
46
Original file line number Diff line number Diff line change @@ -179,6 +179,14 @@ public function normalizeUriProvider()
179
179
'/var/www/api/../definitions.yaml ' ,
180
180
'file:///var/www/definitions.yaml ' ,
181
181
],
182
+ [
183
+ '/var/www/api/schema/../../definitions.yaml ' ,
184
+ 'file:///var/www/definitions.yaml ' ,
185
+ ],
186
+ [
187
+ '/var/www/api/schema/./../definitions.yaml ' ,
188
+ 'file:///var/www/api/definitions.yaml ' ,
189
+ ],
182
190
[
183
191
'/var/www/api/../definitions.yaml#/components/Pet ' ,
184
192
'file:///var/www/definitions.yaml#/components/Pet ' ,
You can’t perform that action at this time.
0 commit comments