Reverted composer.json

This commit is contained in:
Romain Neutron
2012-01-09 14:48:28 +01:00
parent ad22cd791e
commit 465ded9c9f
10 changed files with 29 additions and 104 deletions

View File

@@ -1,89 +0,0 @@
{
"repositories": {
"PHPmailer": {
"vcs": {
"url": "git://github.com/alchemy-fr/PHPMailer_v5.1.git"
}
},
"exiftool": {
"vcs": {
"url": "git://github.com/alchemy-fr/exiftool.git"
}
},
"fpdf": {
"vcs": {
"url": "git://github.com/alchemy-fr/fpdf.git"
}
},
"gdata": {
"vcs": {
"url": "git://github.com/alchemy-fr/gdata.git"
}
},
"moov": {
"vcs": {
"url": "git://github.com/alchemy-fr/MoovRelocator.git"
}
},
"oauth2": {
"vcs": {
"url": "git://github.com/alchemy-fr/oauth2-php.git"
}
},
"Phlickr": {
"vcs": {
"url": "git://github.com/alchemy-fr/Phlickr.git"
}
},
"PHPShortener": {
"vcs": {
"url": "git://github.com/alchemy-fr/PHPShortener.git"
}
},
"recaptcha": {
"vcs": {
"url": "git://github.com/alchemy-fr/recaptcha.git"
}
},
"tcpdf": {
"vcs": {
"url": "git://github.com/alchemy-fr/tcpdf.git"
}
},
"SphinxSearch": {
"vcs": {
"url": "git://github.com/alchemy-fr/SphinxSearch-PHP-SDK.git"
}
},
"DailymotionSDK" : {
"vcs": {
"url": "git://github.com/romainneutron/dailymotion-sdk-php.git"
}
}
},
"require": {
"alchemy/phpmailer": "master",
"alchemy/exiftool": "master",
"alchemy/fpdf": "master",
"alchemy/gdata": "master",
"alchemy/moovrelocator": "master",
"alchemy/oauth2php": "master",
"alchemy/phlickr": "master",
"alchemy/phpshortener": "master",
"alchemy/recaptcha": "master",
"alchemy/tcpdf": "master",
"alchemy/sphinxsearch": "master",
"doctrine/orm": "2.1.*",
"doctrine/data-fixtures": "master-dev",
"gedmo/doctrine-extensions": "master-dev",
"dailymotion/sdk" : "master",
"silex/silex": "1.0.*",
"symfony/yaml": "2.1.*",
"symfony/console": "2.1.*",
"symfony/serializer": "2.1.*",
"symfony/dependency-injection": "2.1.*",
"monolog/monolog": "1.0.*",
"twig/twig": "1.5.*",
"twig/extensions": "master-dev"
}
}

View File

@@ -15,7 +15,7 @@ use Symfony\Component\HttpFoundation\Request,
Symfony\Component\Serializer; Symfony\Component\Serializer;
use Alchemy\Phrasea\Core\Configuration; use Alchemy\Phrasea\Core\Configuration;
require_once __DIR__ . '/../../../vendor/.composer/autoload.php'; require_once __DIR__ . '/../../vendor/Silex/vendor/pimple/lib/Pimple.php';
/** /**
* *
@@ -374,8 +374,12 @@ class Core extends \Pimple
*/ */
public static function initAutoloads() public static function initAutoloads()
{ {
require_once __DIR__ . '/../../../vendor/twig/extensions/lib/Twig/Extensions/Autoloader.php'; require_once __DIR__ . '/../../vendor/symfony/src/Symfony/Component/ClassLoader/UniversalClassLoader.php';
require_once __DIR__ . '/../../vendor/Twig/lib/Twig/Autoloader.php';
require_once __DIR__ . '/../../vendor/Twig-extensions/lib/Twig/Extensions/Autoloader.php';
\Twig_Autoloader::register();
\Twig_Extensions_Autoloader::register(); \Twig_Extensions_Autoloader::register();
$loader = new \Symfony\Component\ClassLoader\UniversalClassLoader(); $loader = new \Symfony\Component\ClassLoader\UniversalClassLoader();
@@ -384,10 +388,16 @@ class Core extends \Pimple
$loader->registerNamespaces(array( $loader->registerNamespaces(array(
'Alchemy' => __DIR__ . '/../..', 'Alchemy' => __DIR__ . '/../..',
'Symfony\\Component\\Yaml' => __DIR__ . '/../../vendor/symfony/src',
'Symfony\\Component\\Console' => __DIR__ . '/../../vendor/symfony/src',
'Symfony\\Component\\Serializer' => __DIR__ . '/../../vendor/symfony/src',
'Symfony\\Component\\DependencyInjection' => __DIR__ . '/../../vendor/symfony/src',
)); ));
$loader->register(); $loader->register();
require_once __DIR__ . '/../../vendor/Silex/autoload.php';
return; return;
} }

View File

@@ -30,6 +30,8 @@ class Doctrine
public function __construct(Array $doctrineConfiguration = array()) public function __construct(Array $doctrineConfiguration = array())
{ {
require_once __DIR__ . '/../../../../vendor/doctrine2-orm/lib/vendor/doctrine-common/lib/Doctrine/Common/ClassLoader.php';
static::loadClasses(); static::loadClasses();
$config = new \Doctrine\ORM\Configuration(); $config = new \Doctrine\ORM\Configuration();
@@ -118,13 +120,13 @@ class Doctrine
$classLoader = new \Doctrine\Common\ClassLoader( $classLoader = new \Doctrine\Common\ClassLoader(
'Doctrine\ORM' 'Doctrine\ORM'
, realpath(__DIR__ . '/../../../../../vendor/doctrine/orm/lib') , realpath(__DIR__ . '/../../../../vendor/doctrine2-orm/lib')
); );
$classLoader->register(); $classLoader->register();
$classLoader = new \Doctrine\Common\ClassLoader( $classLoader = new \Doctrine\Common\ClassLoader(
'Doctrine\DBAL' 'Doctrine\DBAL'
, realpath(__DIR__ . '/../../../../../vendor/doctrine/orm/lib/vendor/doctrine-dbal/lib') , realpath(__DIR__ . '/../../../../vendor/doctrine2-orm/lib/vendor/doctrine-dbal/lib')
); );
$classLoader->register(); $classLoader->register();
@@ -142,7 +144,7 @@ class Doctrine
$classLoader = new \Doctrine\Common\ClassLoader( $classLoader = new \Doctrine\Common\ClassLoader(
'Doctrine\Common' 'Doctrine\Common'
, realpath(__DIR__ . '/../../../../../vendor/doctrine/orm/lib/vendor/doctrine-common/lib') , realpath(__DIR__ . '/../../../../vendor/doctrine2-orm/lib/vendor/doctrine-common/lib')
); );
$classLoader->register(); $classLoader->register();
@@ -166,7 +168,7 @@ class Doctrine
$classLoader = new \Doctrine\Common\ClassLoader( $classLoader = new \Doctrine\Common\ClassLoader(
'Symfony' 'Symfony'
, realpath(__DIR__ . '/../../../../../vendor/doctrine/orm/lib/vendor') , realpath(__DIR__ . '/../../../../vendor/doctrine2-orm/lib/vendor')
); );
$classLoader->register(); $classLoader->register();
@@ -194,7 +196,7 @@ class Doctrine
$classLoader = new \Doctrine\Common\ClassLoader( $classLoader = new \Doctrine\Common\ClassLoader(
'Gedmo' 'Gedmo'
, __DIR__ . "/../../../../../vendor/gedmo/doctrine-extensions/lib" , __DIR__ . "/../../../../vendor/doctrine2-gedmo/lib"
); );
$classLoader->register(); $classLoader->register();

View File

@@ -9,7 +9,7 @@
* file that was distributed with this source code. * file that was distributed with this source code.
*/ */
$new_include_path = __DIR__ . "/../../../../../vendor/" . PATH_SEPARATOR . get_include_path(); $new_include_path = __DIR__ . "/../../../../vendor/" . PATH_SEPARATOR . get_include_path();
set_include_path($new_include_path); set_include_path($new_include_path);
/** /**

View File

@@ -10,7 +10,7 @@
* *
* @author nicolas * @author nicolas
*/ */
require_once __DIR__ . '/../../vendor/dailymotion/sdk/Dailymotion.php'; require_once __DIR__ . '/../vendor/dailymotion-sdk-php/Dailymotion.php';
class DailymotionWithoutOauth2 extends Dailymotion class DailymotionWithoutOauth2 extends Dailymotion
{ {

View File

@@ -85,7 +85,7 @@ class patch_320aa implements patchInterface
if($datas['name'] == 'GV_exiftool' && strpos($val, 'lib/exiftool/exiftool') !== false) if($datas['name'] == 'GV_exiftool' && strpos($val, 'lib/exiftool/exiftool') !== false)
{ {
$val = str_replace('lib/exiftool/exiftool', 'vendor/alchemy/exiftool/exiftool', $val); $val = str_replace('lib/exiftool/exiftool', 'lib/vendor/exiftool/exiftool', $val);
} }
switch ($datas['type']) switch ($datas['type'])

View File

@@ -264,12 +264,12 @@ class setup
{ {
if (system_server::get_platform() == 'WINDOWS') if (system_server::get_platform() == 'WINDOWS')
{ {
$exiftool = dirname(__DIR__) . '/../vendor/alchemy/exiftool/exiftool.exe'; $exiftool = dirname(__DIR__) . '/vendor/exiftool/exiftool.exe';
$indexer = dirname(dirname(__DIR__)) . '/bin/phraseanet_indexer.exe'; $indexer = dirname(dirname(__DIR__)) . '/bin/phraseanet_indexer.exe';
} }
else else
{ {
$exiftool = dirname(__DIR__) . '/../vendor/alchemy/exiftool/exiftool'; $exiftool = dirname(__DIR__) . '/vendor/exiftool/exiftool';
$indexer = null; $indexer = null;
} }

View File

@@ -3,7 +3,7 @@
require_once dirname(__FILE__) . '/../../../PhraseanetPHPUnitAuthenticatedAbstract.class.inc'; require_once dirname(__FILE__) . '/../../../PhraseanetPHPUnitAuthenticatedAbstract.class.inc';
require_once dirname(__FILE__) . '/../../Bridge_datas.inc'; require_once dirname(__FILE__) . '/../../Bridge_datas.inc';
$new_include_path = dirname(__FILE__) . '/../../../../../vendor/alchemy/gdata/' . PATH_SEPARATOR . get_include_path(); $new_include_path = dirname(__FILE__) . '/../../../../vendor/gdata/' . PATH_SEPARATOR . get_include_path();
set_include_path($new_include_path); set_include_path($new_include_path);

View File

@@ -1,6 +1,7 @@
<?php <?php
require_once dirname(__FILE__) . '/../../PhraseanetWebTestCaseAuthenticatedAbstract.class.inc'; require_once dirname(__FILE__) . '/../../PhraseanetWebTestCaseAuthenticatedAbstract.class.inc';
require_once __DIR__ . "/../../../../lib/vendor/Silex/autoload.php";
/* /*
* This file is part of Phraseanet * This file is part of Phraseanet
* *

View File

@@ -1,8 +1,9 @@
<?php <?php
require_once dirname(__FILE__) . "/../../../../vendor/alchemy/oauth2php/lib/OAuth2.inc"; require_once dirname(__FILE__) . "/../../../../lib/vendor/oauth2/lib/OAuth2.inc";
require_once dirname(__FILE__) . '/../../PhraseanetPHPUnitAuthenticatedAbstract.class.inc'; require_once dirname(__FILE__) . '/../../PhraseanetPHPUnitAuthenticatedAbstract.class.inc';
require_once dirname(__FILE__) . '/../../../../lib/vendor/symfony/src/Symfony/Component/Yaml/Parser.php';
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
/** /**