Skip to content

Commit

Permalink
Dependency bump (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
umpirsky authored Jul 20, 2018
1 parent a225777 commit da881c1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 18 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: php

php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2

before_script:
- sudo apt-get -qq update
Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
}
],
"require": {
"php": ">=5.5.9",
"twig/twig": "~1.23|~2.0",
"php": "^7.1",
"twig/twig": "^2.0",
"twig/extensions": "~1.0",
"symfony/twig-bridge": "~3.0|~4.0",
"symfony/routing": "~3.0|~4.0",
"symfony/filesystem": "~3.0|~4.0",
"symfony/translation": "~3.0|~4.0",
"symfony/form": "~3.0|~4.0",
"symfony/asset": "~2.8|~3.0|~4.0"
"symfony/twig-bridge": "^4.0",
"symfony/routing": "^4.0",
"symfony/filesystem": "^4.0",
"symfony/translation": "^4.0",
"symfony/form": "^4.0",
"symfony/asset": "^4.0"
},
"require-dev": {
"symfony/config": "~3.0|~4.0",
"phpunit/phpunit": "~4.8|~6.0"
"symfony/config": "^4.0",
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-0": { "Twig\\Gettext": "." }
Expand Down
6 changes: 1 addition & 5 deletions twig-gettext-extractor
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,7 @@ $twig->addExtension(new Symfony\Bridge\Twig\Extension\TranslationExtension(
$twig->addExtension(new Symfony\Bridge\Twig\Extension\RoutingExtension(
new Twig\Gettext\Routing\Generator\UrlGenerator()
));
$twig->addExtension(new Symfony\Bridge\Twig\Extension\FormExtension(
new Symfony\Bridge\Twig\Form\TwigRenderer(
new Symfony\Bridge\Twig\Form\TwigRendererEngine()
)
));
$twig->addExtension(new Symfony\Bridge\Twig\Extension\FormExtension());
$twig->addExtension(new Symfony\Bridge\Twig\Extension\AssetExtension(
new Symfony\Component\Asset\Packages()
));
Expand Down

0 comments on commit da881c1

Please sign in to comment.