Skip to content

Commit 8d9fe09

Browse files
committed
composer: removed --dev
1 parent 98256e4 commit 8d9fe09

12 files changed

+12
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ after_failure:
2525

2626
before_script:
2727
# Install Nette Tester & Code Checker
28-
- composer install --no-interaction --dev --prefer-source
28+
- composer install --no-interaction --prefer-source
2929
- composer create-project nette/code-checker code-checker ~2.3 --no-interaction --prefer-source
3030
- if [ $TRAVIS_PHP_VERSION == "5.6" ]; then npm install -g grunt-cli; cd tests/netteForms; npm install; bower install; cd ../..; fi

examples/basic-example.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
if (@!include __DIR__ . '/../vendor/autoload.php') {
9-
die('Install packages using `composer update --dev`');
9+
die('Install packages using `composer install`');
1010
}
1111

1212
use Nette\Forms\Form,

examples/bootstrap2-rendering.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
if (@!include __DIR__ . '/../vendor/autoload.php') {
9-
die('Install packages using `composer update --dev`');
9+
die('Install packages using `composer install`');
1010
}
1111

1212
use Nette\Forms\Form,

examples/bootstrap3-rendering.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
if (@!include __DIR__ . '/../vendor/autoload.php') {
9-
die('Install packages using `composer update --dev`');
9+
die('Install packages using `composer install`');
1010
}
1111

1212
use Nette\Forms\Form,

examples/containers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
if (@!include __DIR__ . '/../vendor/autoload.php') {
9-
die('Install packages using `composer update --dev`');
9+
die('Install packages using `composer install`');
1010
}
1111

1212
use Nette\Forms\Form,

examples/custom-control.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
if (@!include __DIR__ . '/../vendor/autoload.php') {
9-
die('Install packages using `composer update --dev`');
9+
die('Install packages using `composer install`');
1010
}
1111

1212
use Nette\Forms\Form,

examples/custom-rendering.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
if (@!include __DIR__ . '/../vendor/autoload.php') {
9-
die('Install packages using `composer update --dev`');
9+
die('Install packages using `composer install`');
1010
}
1111

1212
use Nette\Forms\Form,

examples/custom-validator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
if (@!include __DIR__ . '/../vendor/autoload.php') {
9-
die('Install packages using `composer update --dev`');
9+
die('Install packages using `composer install`');
1010
}
1111

1212
use Nette\Forms\Form,

examples/html5.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
if (@!include __DIR__ . '/../vendor/autoload.php') {
9-
die('Install packages using `composer update --dev`');
9+
die('Install packages using `composer install`');
1010
}
1111

1212
use Nette\Forms\Form,

examples/localization.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
if (@!include __DIR__ . '/../vendor/autoload.php') {
9-
die('Install packages using `composer update --dev`');
9+
die('Install packages using `composer install`');
1010
}
1111

1212

0 commit comments

Comments
 (0)