Change Symfony/Component/Routing from submodule to composer fetching

This commit is contained in:
Bart Visscher 2012-10-27 11:32:16 +02:00
parent a8d0f84829
commit 43e8293d9c
5 changed files with 14 additions and 6 deletions

4
.gitignore vendored
View File

@ -54,3 +54,7 @@ nbproject
# WebFinger
.well-known
/.buildpath
3rdparty/autoload.php
3rdparty/composer/
3rdparty/symfony/
composer.lock

3
.gitmodules vendored
View File

@ -1,3 +0,0 @@
[submodule "3rdparty/Symfony/Component/Routing"]
path = 3rdparty/Symfony/Component/Routing
url = git://github.com/symfony/Routing.git

@ -1 +0,0 @@
Subproject commit d72483890880a987afa679503af096d2aaf7d2ee

8
composer.json Normal file
View File

@ -0,0 +1,8 @@
{
"require": {
"symfony/routing": "2.0.*"
},
"config": {
"vendor-dir": "3rdparty"
}
}

View File

@ -97,8 +97,8 @@ class OC{
elseif(strpos($className, 'Sabre_')===0) {
$path = str_replace('_', '/', $className) . '.php';
}
elseif(strpos($className, 'Symfony\\')===0) {
$path = str_replace('\\', '/', $className) . '.php';
elseif(strpos($className, 'Symfony\\Component\\Routing\\')===0) {
$path = 'symfony/routing/'.str_replace('\\', '/', $className) . '.php';
}
elseif(strpos($className, 'Test_')===0) {
$path = 'tests/lib/'.strtolower(str_replace('_', '/', substr($className, 5)) . '.php');