Skip to content

Commit 5051ec0

Browse files
authored
Merge pull request #47 from moufmouf/config-template
Adding configuration template in bundle (rather than in the recipe)
2 parents 83aadb5 + a919ab2 commit 5051ec0

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ matrix:
1616
# Test the latest stable release
1717
- php: 7.2
1818
env: PHPSTAN=true
19-
- php: 7.3
19+
- php: 7.4
2020
env: COVERAGE=true PHPUNIT_FLAGS="-v --coverage-text"
2121

2222
# Test LTS versions.
23-
- php: 7.3
23+
- php: 7.4
2424
env: DEPENDENCIES="symfony/lts:^4"
2525

2626
# Latest commit to master
27-
- php: 7.3
27+
- php: 7.4
2828
env: STABILITY="dev"
2929

3030
allow_failures:
3131
# Minimum supported dependencies with the latest and oldest PHP version
32-
- php: 7.3
32+
- php: 7.4
3333
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak_vendors"
3434
- php: 7.2
3535
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak_vendors"

Tests/FunctionalTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public function testErrors(): void
122122

123123
$response = $kernel->handle($request);
124124

125-
$this->assertSame(500, $response->getStatusCode());
125+
$this->assertSame(400, $response->getStatusCode());
126126

127127
// Let's test that the highest exception code compatible with an HTTP is kept.
128128
$request = Request::create('/graphql', 'GET', ['query' => '
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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\

0 commit comments

Comments
 (0)