Skip to content
This repository has been archived by the owner on Jul 30, 2019. It is now read-only.

Commit

Permalink
enabled support for the Symfony3
Browse files Browse the repository at this point in the history
updated the travis.yml
updated the README
  • Loading branch information
piku235 committed Dec 7, 2015
1 parent 588c534 commit a1250a6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ env:
- SYMFONY_VERSION=2.5.*
- SYMFONY_VERSION=2.6.*
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=~2.8@dev
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=3.0.*
- SYMFONY_VERSION=^3.1@dev

before_install:
- composer self-update
Expand All @@ -27,4 +29,4 @@ notifications:
matrix:
allow_failures:
- php: hhvm
- env: SYMFONY_VERSION=~2.8@dev
- env: SYMFONY_VERSION=^3.1@dev
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
JungiThemeBundle
================

The JungiThemeBundle is a themes engine designed for the Symfony2. It provides wide features which allows you to create
flexible and smart themes with so-called tags. Thanks to these tags you can e.g. create a theme for desktop and mobile
devices (Responsive Web Design) or create two separate themes where each one is designed for another device (Adaptive Web
Design). Of course the functionality of the bundle not ends here. Read the documentation to know more.
The JungiThemeBundle is a themes engine designed for the Symfony2 and the Symfony3. It provides wide features which allows
you to create flexible and smart themes with so-called tags. Thanks to these tags you can e.g. create a theme for desktop
and mobile devices (Responsive Web Design) or create two separate themes where each one is designed for another device
(Adaptive Web Design). Of course the functionality of the bundle not ends here. Read the documentation to know more.

[![Build Status](https://travis-ci.org/piku235/JungiThemeBundle.svg?branch=master)](https://travis-ci.org/piku235/JungiThemeBundle)
[![Latest Stable Version](https://poser.pugx.org/jungi/theme-bundle/v/stable)](https://packagist.org/packages/jungi/theme-bundle)
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
"license": "MIT",
"require": {
"php": ">=5.3.9",
"symfony/framework-bundle": "~2.5",
"symfony/templating": "~2.5",
"symfony/twig-bundle": "~2.5",
"mobiledetect/mobiledetectlib": "~2.8"
"symfony/framework-bundle": "^2.5|^3.0",
"symfony/templating": "^2.5|^3.0",
"symfony/twig-bundle": "^2.5|^3.0",
"mobiledetect/mobiledetectlib": "^2.5|^3.0"
},
"require-dev": {
"symfony/finder": "~2.5",
"symfony/validator": "~2.5"
"symfony/finder": "^2.5|^3.0",
"symfony/validator": "^2.5|^3.0"
},
"suggest": {
"symfony/finder": "For using the cache warmer",
Expand Down

0 comments on commit a1250a6

Please sign in to comment.