Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit e7153ce

Browse files
committed
Merge branch '2.6' into 2.7
* 2.6: updated VENDORS for 2.5.10 updated distribution bundle added back composer.lock updated composer.json Prevent doctrine/dbal 2.5 from installing updated year range in LICENSE Use getRootDir() rather than assuming __DIR__ Conflicts: composer.json
2 parents 5925c98 + bc212d2 commit e7153ce

File tree

4 files changed

+1675
-4
lines changed

4 files changed

+1675
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2004-2014 Fabien Potencier
1+
Copyright (c) 2004-2015 Fabien Potencier
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

app/AppKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ public function registerBundles()
3131

3232
public function registerContainerConfiguration(LoaderInterface $loader)
3333
{
34-
$loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
34+
$loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
3535
}
3636
}

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
"require": {
1010
"php": ">=5.3.3",
1111
"symfony/symfony": "2.7.x-dev",
12-
"doctrine/orm": "~2.2,>=2.2.3",
12+
"doctrine/orm": "~2.2,>=2.2.3,<2.5",
13+
"doctrine/dbal": "<2.5",
1314
"doctrine/doctrine-bundle": "~1.2",
1415
"twig/extensions": "~1.0",
1516
"symfony/assetic-bundle": "~2.3",
1617
"symfony/swiftmailer-bundle": "~2.3",
1718
"symfony/monolog-bundle": "~2.4",
1819
"sensio/distribution-bundle": "~3.0,>=3.0.12",
19-
"sensio/framework-extra-bundle": "~3.0",
20+
"sensio/framework-extra-bundle": "~3.0,>=3.0.2",
2021
"incenteev/composer-parameter-handler": "~2.0"
2122
},
2223
"require-dev": {

0 commit comments

Comments
 (0)