File tree Expand file tree Collapse file tree 7 files changed +7
-8
lines changed
Tests/Functional/DependencyInjection/Fixtures/Xml Expand file tree Collapse file tree 7 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ phpunit.xml
5
5
composer.lock
6
6
composer.phar
7
7
.php_cs.cache
8
+ .php_cs
File renamed without changes.
Original file line number Diff line number Diff line change 43
43
44
44
before_install :
45
45
- if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
46
- - if [ ${TEST_COVERAGE} != true ]; then phpenv config-rm xdebug.ini || true; fi
46
+ - if [ ${TEST_COVERAGE} != true ]; then phpenv config-rm xdebug.ini || true; fi;
47
47
- composer selfupdate
48
48
- if [ $SYMFONY_VERSION ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --dev --no-update; fi;
49
49
- if [ $GRAPHQLPHP_VERSION ]; then composer require "overblog/graphql-bundle:${GRAPHQLBUNDLE_VERSION}" --dev --no-update; fi;
@@ -52,8 +52,8 @@ install: composer update --prefer-source --no-interaction --optimize-autoloader
52
52
53
53
script :
54
54
- ./vendor/bin/phpunit --debug $( if [ $TEST_COVERAGE = true ]; then echo "-d xdebug.max_nesting_level=1000 --coverage-clover=build/logs/clover.xml"; fi; )
55
- - if [ ${TEST_COVERAGE} = true ]; then composer require --dev 'friendsofphp/ php-cs-fixer:^2.0' && ./vendor/bin /php-cs-fixer fix --diff --dry-run -v; fi;
55
+ - 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;
56
56
57
57
after_script :
58
- - if [ ${TEST_COVERAGE} = true ]; then wget https://scrutinizer-ci.com/ocular.phar && travis_retry php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi
59
- - if [ ${TEST_COVERAGE} = true ]; then composer require "satooshi/php-coveralls:^1.0" && travis_retry php ./vendor/bin/coveralls -v; fi
58
+ - if [ ${TEST_COVERAGE} = true ]; then wget https://scrutinizer-ci.com/ocular.phar && travis_retry php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi;
59
+ - if [ ${TEST_COVERAGE} = true ]; then composer require "satooshi/php-coveralls:^1.0" && travis_retry php ./vendor/bin/coveralls -v; fi;
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
-
3
2
<routes xmlns =" http://symfony.com/schema/routing"
4
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
4
xsi : schemaLocation =" http://symfony.com/schema/routing
Original file line number Diff line number Diff line change 26
26
<xsd : element name =" javascript_libraries" type =" javascriptLibraries" minOccurs =" 0" maxOccurs =" 1" />
27
27
</xsd : choice >
28
28
</xsd : complexType >
29
- </xsd : schema >
29
+ </xsd : schema >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
-
3
2
<container xmlns =" http://symfony.com/schema/dic/services"
4
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
4
xsi : schemaLocation =" http://symfony.com/schema/dic/services
Original file line number Diff line number Diff line change 21
21
</framework : config >
22
22
23
23
<overblog_graphiql : config />
24
- </container >
24
+ </container >
You can’t perform that action at this time.
0 commit comments