Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #65 from symfony-cmf/2.0-rc
Browse files Browse the repository at this point in the history
Prepare 2.0 RC
  • Loading branch information
wouterj authored Feb 1, 2017
2 parents 1d6b05b + cc91248 commit 3a3e7f9
Show file tree
Hide file tree
Showing 10 changed files with 347 additions and 852 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: php

php:
- 5.5
- 5.6
- 7.0
- hhvm

sudo: false
Expand All @@ -18,7 +18,7 @@ env:
matrix:
finish_fast: true
include:
- php: 7.0
- php: 7.1
env: COMPOSER_CMD=install

before_install:
Expand All @@ -36,4 +36,3 @@ script: phpunit

notifications:
irc: "irc.freenode.org#symfony-cmf"
email: "[email protected]"
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2004-2016 Symfony CMF
Copyright (c) 2004-2017 Symfony CMF

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 0 additions & 4 deletions app/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ public function registerBundles()
$bundles = [
// Symfony Standard Edition Bundles
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\AsseticBundle\AsseticBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
Expand All @@ -32,9 +31,6 @@ public function registerBundles()
new Symfony\Cmf\Bundle\MenuBundle\CmfMenuBundle(),
new Knp\Bundle\MenuBundle\KnpMenuBundle(),

new Symfony\Cmf\Bundle\CreateBundle\CmfCreateBundle(),
new FOS\RestBundle\FOSRestBundle(),

// Application bundles
new AppBundle\AppBundle(),
];
Expand Down
13 changes: 0 additions & 13 deletions app/config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,6 @@ twig:
debug: '%kernel.debug%'
strict_variables: '%kernel.debug%'

# Assetic Configuration
assetic:
debug: '%kernel.debug%'
use_controller: false
bundles: [CmfCreateBundle]
#java: /usr/bin/java
filters:
cssrewrite: ~
#closure:
# jar: '%kernel.root_dir%/Resources/java/compiler.jar'
#yui_css:
# jar: '%kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar'

# Doctrine Configuration (needed for Jackalope Doctrine DBAL)
doctrine:
dbal:
Expand Down
5 changes: 1 addition & 4 deletions app/config/config_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,5 @@ monolog:
# type: chromephp
# level: info

assetic:
use_controller: '%use_assetic_controller%'

#swiftmailer:
# delivery_address: [email protected]
# delivery_addresses: ['[email protected]']
3 changes: 0 additions & 3 deletions app/config/routing.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
app:
resource: '@AppBundle/Controller/'
type: annotation

_cmf_create:
resource: '@CmfCreateBundle/Resources/config/routing/rest.xml'
15 changes: 6 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,30 +25,27 @@
}
},
"require": {
"php": "^5.5.9|^7.0",
"php": "^5.6|^7.0",
"symfony/symfony": "^3.2",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/data-fixtures": "^1.0",
"doctrine/doctrine-cache-bundle": "^1.2",
"twig/extensions": "^1.0",
"sensio/framework-extra-bundle": "^3.0.2",
"symfony/assetic-bundle": "^2.3",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/monolog-bundle": "^3.0",
"symfony/swiftmailer-bundle": "^2.3.10",
"symfony/monolog-bundle": "^3.0.2",
"symfony/polyfill-apcu": "^1.0",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"symfony-cmf/symfony-cmf": "2.0.*",
"symfony-cmf/create-bundle": "2.0.*",
"jackalope/jackalope-doctrine-dbal": "~1.1"
},
"require-dev": {
"liip/functional-test-bundle": "~1.0",
"sensio/generator-bundle": "~3.0",
"sensio/distribution-bundle": "^5.0",
"incenteev/composer-parameter-handler": "~2.0",
"symfony/phpunit-bridge": "~3.0"
},
"minimum-stability": "dev",
"minimum-stability": "RC",
"prefer-stable": true,
"scripts": {
"symfony-scripts": [
Expand Down
Loading

0 comments on commit 3a3e7f9

Please sign in to comment.