mirror of
				https://github.com/alchemy-fr/Phraseanet.git
				synced 2025-10-26 03:13:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /*
 | |
|  * This file is part of Phraseanet
 | |
|  *
 | |
|  * (c) 2005-2016 Alchemy
 | |
|  *
 | |
|  * For the full copyright and license information, please view the LICENSE
 | |
|  * file that was distributed with this source code.
 | |
|  */
 | |
| 
 | |
| namespace Alchemy\Phrasea\Core\Provider;
 | |
| 
 | |
| use Alchemy\Phrasea\Setup\ConfigurationTester;
 | |
| use Alchemy\Phrasea\Application;
 | |
| use Alchemy\Phrasea\Setup\Version\PreSchemaUpgrade\PreSchemaUpgradeCollection;
 | |
| use Alchemy\Phrasea\Setup\Version\PreSchemaUpgrade\Upgrade39Feeds;
 | |
| use Alchemy\Phrasea\Setup\Version\PreSchemaUpgrade\Upgrade39Sessions;
 | |
| use Alchemy\Phrasea\Setup\Version\PreSchemaUpgrade\Upgrade39Tokens;
 | |
| use Alchemy\Phrasea\Setup\Version\PreSchemaUpgrade\Upgrade39Users;
 | |
| use Silex\Application as SilexApplication;
 | |
| use Silex\ServiceProviderInterface;
 | |
| 
 | |
| class ConfigurationTesterServiceProvider implements ServiceProviderInterface
 | |
| {
 | |
| 
 | |
|     public function register(SilexApplication $app)
 | |
|     {
 | |
|         $app['phraseanet.configuration-tester'] = $app->share(function (Application $app) {
 | |
|             return new ConfigurationTester($app);
 | |
|         });
 | |
| 
 | |
|         $app['phraseanet.pre-schema-upgrader.upgrades'] = $app->share(function () {
 | |
|             return [new Upgrade39Feeds(), new Upgrade39Users(), new Upgrade39Tokens(), new Upgrade39Sessions()];
 | |
|         });
 | |
| 
 | |
|         $app['phraseanet.pre-schema-upgrader'] = $app->share(function (Application $app) {
 | |
|             return new PreSchemaUpgradeCollection($app['phraseanet.pre-schema-upgrader.upgrades']);
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     public function boot(SilexApplication $app)
 | |
|     {
 | |
|     }
 | |
| }
 | 
