File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -16,20 +16,20 @@ matrix:
16
16
# Test the latest stable release
17
17
- php : 7.2
18
18
env : PHPSTAN=true
19
- - php : 7.3
19
+ - php : 7.4
20
20
env : COVERAGE=true PHPUNIT_FLAGS="-v --coverage-text"
21
21
22
22
# Test LTS versions.
23
- - php : 7.3
23
+ - php : 7.4
24
24
env : DEPENDENCIES="symfony/lts:^4"
25
25
26
26
# Latest commit to master
27
- - php : 7.3
27
+ - php : 7.4
28
28
env : STABILITY="dev"
29
29
30
30
allow_failures :
31
31
# Minimum supported dependencies with the latest and oldest PHP version
32
- - php : 7.3
32
+ - php : 7.4
33
33
env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak_vendors"
34
34
- php : 7.2
35
35
env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak_vendors"
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ public function testErrors(): void
122
122
123
123
$ response = $ kernel ->handle ($ request );
124
124
125
- $ this ->assertSame (500 , $ response ->getStatusCode ());
125
+ $ this ->assertSame (400 , $ response ->getStatusCode ());
126
126
127
127
// Let's test that the highest exception code compatible with an HTTP is kept.
128
128
$ request = Request::create ('/graphql ' , 'GET ' , ['query ' => '
Original file line number Diff line number Diff line change
1
+ # Read more about GraphQLite available options at: https://graphqlite.thecodingmachine.io/docs/symfony-bundle
2
+ graphqlite :
3
+ namespace :
4
+ controllers : App\GraphqlController\
5
+ types :
6
+ - App\
You can’t perform that action at this time.
0 commit comments