Skip to content

Commit af59316

Browse files
committed
removed composer --dev option everywhere
1 parent 004e5ab commit af59316

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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/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.phar install
1313
$ phpunit
1414

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

src/Symfony/Component/Debug/README.md

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

4242
$ cd path/to/Symfony/Component/Debug/
43-
$ composer.phar install --dev
43+
$ composer.phar install
4444
$ phpunit

src/Symfony/Component/Intl/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Preparation
1010
To prepare, you need to install the development dependencies of the component.
1111

1212
$ cd /path/to/Symfony/Component/Intl
13-
$ composer.phar install --dev
13+
$ composer.phar install
1414

1515
Determining your ICU version
1616
---------------------------

src/Symfony/Component/Intl/README.md

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

2020
$ cd path/to/Symfony/Component/Intl/
21-
$ composer.phar install --dev
21+
$ composer.phar install
2222
$ phpunit
2323

2424
[0]: http://www.php.net/manual/en/intl.setup.php

src/Symfony/Component/Intl/Resources/bin/update-data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
For running this script, the intl extension must be loaded and all vendors
5151
must have been installed through composer:
5252
53-
composer install --dev
53+
composer install
5454
5555
MESSAGE
5656
);

0 commit comments

Comments
 (0)