Skip to content

Commit 9a70bbb

Browse files
committed
minor symfony#13624 removed composer --dev option everywhere (fabpot)
This PR was merged into the 2.3 branch. Discussion ---------- removed composer --dev option everywhere | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Commits ------- 0fe4913 renamed composer.phar to composer to be consistent with the Symfony docs af59316 removed composer --dev option everywhere
2 parents ce95fa8 + 0fe4913 commit 9a70bbb

File tree

34 files changed

+36
-36
lines changed

34 files changed

+36
-36
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ before_install:
3636
- if [ "$TRAVIS_BRANCH" = "master" ]; then export COMPOSER_ROOT_VERSION=dev-master; else export COMPOSER_ROOT_VERSION="$TRAVIS_BRANCH".x-dev; fi;
3737

3838
install:
39-
- if [ "$components" = "no" ]; then composer --prefer-source --dev install; fi;
39+
- if [ "$components" = "no" ]; then composer --prefer-source install; fi;
4040

4141
script:
4242
- if [ "$components" = "no" ]; then ls -d src/Symfony/*/* | parallel --gnu --keep-order 'echo -e "\\nRunning {} tests"; phpunit --exclude-group tty,benchmark,intl-data {} || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;
4343
- if [ "$components" = "no" ]; then echo -e "\\nRunning tests requiring tty"; phpunit --group tty || (echo -e "\\e[41mKO\\e[0m tty group" && $(exit 1)); fi;
44-
- if [ "$components" = "high" ]; then find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist | sed 's#\(.*\)/.*#\1#' | parallel --gnu --keep-order -j25% 'echo -e "\\nRunning {} tests"; cd {}; composer --prefer-source --dev update; phpunit --exclude-group tty,benchmark,intl-data || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;
45-
- if [ "$components" = "low" ]; then find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist | sed 's#\(.*\)/.*#\1#' | parallel --gnu --keep-order -j25% 'echo -e "\\nRunning {} tests"; cd {}; composer --prefer-source --dev --prefer-lowest --prefer-stable update; phpunit --exclude-group tty,benchmark,intl-data || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;
44+
- if [ "$components" = "high" ]; then find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist | sed 's#\(.*\)/.*#\1#' | parallel --gnu --keep-order -j25% 'echo -e "\\nRunning {} tests"; cd {}; composer --prefer-source update; phpunit --exclude-group tty,benchmark,intl-data || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;
45+
- if [ "$components" = "low" ]; then find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist | sed 's#\(.*\)/.*#\1#' | parallel --gnu --keep-order -j25% 'echo -e "\\nRunning {} tests"; cd {}; composer --prefer-source --prefer-lowest --prefer-stable update; phpunit --exclude-group tty,benchmark,intl-data || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;

src/Symfony/Bridge/Doctrine/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ Resources
1010
You can run the unit tests with the following command:
1111

1212
$ cd path/to/Symfony/Bridge/Doctrine/
13-
$ composer.phar install
13+
$ composer install
1414
$ phpunit

src/Symfony/Bridge/Monolog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ Resources
99
You can run the unit tests with the following command:
1010

1111
$ cd path/to/Symfony/Bridge/Monolog/
12-
$ composer.phar install
12+
$ composer install
1313
$ phpunit

src/Symfony/Bridge/Propel1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ Resources
99
You can run the unit tests with the following command:
1010

1111
$ cd path/to/Symfony/Bridge/Propel1/
12-
$ composer.phar install
12+
$ composer install
1313
$ phpunit

src/Symfony/Bridge/ProxyManager/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Resources
99
You can run the unit tests with the following command:
1010

1111
$ cd path/to/Symfony/Bridge/ProxyManager/
12-
$ composer.phar install --dev
12+
$ composer install
1313
$ phpunit
1414

1515
[1]: https://github.com/Ocramius/ProxyManager

src/Symfony/Bridge/Twig/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ If you want to run the unit tests, install dev dependencies before
1111
running PHPUnit:
1212

1313
$ cd path/to/Symfony/Bridge/Twig/
14-
$ composer.phar install
14+
$ composer install
1515
$ phpunit

src/Symfony/Component/BrowserKit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ provided by the HttpKernel component.
1919
You can run the unit tests with the following command:
2020

2121
$ cd path/to/Symfony/Component/BrowserKit/
22-
$ composer.phar install
22+
$ composer install
2323
$ phpunit

src/Symfony/Component/ClassLoader/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ Resources
8181
You can run the unit tests with the following command:
8282

8383
$ cd path/to/Symfony/Component/ClassLoader/
84-
$ composer.phar install
84+
$ composer install
8585
$ phpunit

src/Symfony/Component/Config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Resources
1212
You can run the unit tests with the following command:
1313

1414
$ cd path/to/Symfony/Component/Config/
15-
$ composer.phar install
15+
$ composer install
1616
$ phpunit
1717

src/Symfony/Component/Console/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Tests
5050
You can run the unit tests with the following command:
5151

5252
$ cd path/to/Symfony/Component/Console/
53-
$ composer.phar install
53+
$ composer install
5454
$ phpunit
5555

5656
Third Party

0 commit comments

Comments
 (0)