File tree 3 files changed +11
-2
lines changed
Tests/DependencyInjection
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ before_install:
56
56
install : composer update --prefer-source --no-interaction --optimize-autoloader ${COMPOSER_UPDATE_FLAGS}
57
57
58
58
script :
59
- - ./vendor/ bin/phpunit --debug $( if [ $TEST_COVERAGE = true ]; then echo "-d xdebug.max_nesting_level=1000 --coverage-clover=build/logs/clover.xml"; fi; )
59
+ - ./bin/phpunit --debug $( if [ $TEST_COVERAGE = true ]; then echo "-d xdebug.max_nesting_level=1000 --coverage-clover=build/logs/clover.xml"; fi; )
60
60
- if [ ${TEST_COVERAGE} = true ]; then wget http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -O php-cs-fixer && php ./php-cs-fixer fix --diff --dry-run -v; fi;
61
61
62
62
after_script :
Original file line number Diff line number Diff line change 6
6
use Overblog \GraphiQLBundle \Config \GraphiQLViewJavaScriptLibraries ;
7
7
use Overblog \GraphiQLBundle \DependencyInjection \OverblogGraphiQLExtension ;
8
8
use PHPUnit \Framework \TestCase ;
9
+ use Symfony \Component \DependencyInjection \Compiler \CompilerPassInterface ;
9
10
use Symfony \Component \DependencyInjection \ContainerBuilder ;
10
11
use Symfony \Component \DependencyInjection \ParameterBag \ParameterBag ;
11
12
use Symfony \Component \DependencyInjection \Reference ;
12
13
13
- final class OverblogGraphiQLExtensionTest extends TestCase
14
+ final class OverblogGraphiQLExtensionTest extends TestCase implements CompilerPassInterface
14
15
{
15
16
public function testLoadWithoutConfiguration ()
16
17
{
17
18
$ container = $ this ->createContainer ();
19
+ $ container ->addCompilerPass ($ this );
18
20
$ container ->registerExtension (new OverblogGraphiQLExtension ());
19
21
$ container ->loadFromExtension ('overblog_graphiql ' );
20
22
$ this ->compileContainer ($ container );
@@ -57,4 +59,10 @@ private function compileContainer(ContainerBuilder $container)
57
59
$ container ->getCompilerPassConfig ()->setRemovingPasses ([]);
58
60
$ container ->compile ();
59
61
}
62
+
63
+ public function process (ContainerBuilder $ container )
64
+ {
65
+ $ container ->findDefinition ('overblog_graphiql.view.config.javascript_libraries ' )->setPublic (true );
66
+ $ container ->findDefinition ('overblog_graphiql.view.config ' )->setPublic (true );
67
+ }
60
68
}
Original file line number Diff line number Diff line change 17
17
}
18
18
],
19
19
"config" : {
20
+ "bin-dir" : " bin" ,
20
21
"sort-packages" : true
21
22
},
22
23
"require" : {
You can’t perform that action at this time.
0 commit comments