Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of git://github.com/zendframework/zf2 into string
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 34 changed files with 584 additions and 409 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

14 changes: 0 additions & 14 deletions .travis/run-tests.sh

This file was deleted.

7 changes: 0 additions & 7 deletions .travis/skipped-components

This file was deleted.

61 changes: 0 additions & 61 deletions .travis/tested-components

This file was deleted.

24 changes: 15 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,34 @@
{
"name": "zendframework/zend-module-manager",
"description": "Zend\\ModuleManager component",
"name": "zendframework/zend-modulemanager",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"module-manager"
"modulemanager"
],
"autoload": {
"psr-4": {
"Zend\\ModuleManager\\": "src/"
"Zend\\ModuleManager": "src/"
}
},
"require": {
"php": ">=5.3.23"
"php": ">=5.3.3",
"zendframework/zend-eventmanager": "self.version",
"zendframework/zend-stdlib": "self.version"
},
"require-dev": {
"fabpot/php-cs-fixer": "1.7.*",
"satooshi/php-coveralls": "dev-master",
"phpunit/PHPUnit": "~4.0"
"suggest": {
"zendframework/zend-config": "Zend\\Config component",
"zendframework/zend-loader": "Zend\\Loader component",
"zendframework/zend-servicemanager": "Zend\\ServiceManager component"
},
"homepage": "https://github.com/zendframework/zend-module-manager",
"autoload-dev": {
"psr-4": {
"ZendTest\\ModuleManager\\": "test/"
}
},
"require-dev": {
"fabpot/php-cs-fixer": "1.7.*",
"satooshi/php-coveralls": "dev-master",
"phpunit/PHPUnit": "~4.0"
}
}
3 changes: 2 additions & 1 deletion src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@
* @package Zend_ModuleManager
*/
interface ExceptionInterface
{}
{
}
6 changes: 3 additions & 3 deletions src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
* @package Zend_ModuleManager
* @subpackage Exception
*/
class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
{}
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
}
3 changes: 2 additions & 1 deletion src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
* @subpackage Exception
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{}
{
}
40 changes: 40 additions & 0 deletions src/Feature/ControllerPluginProviderInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend_ModuleManager
* @subpackage Feature
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

namespace Zend\ModuleManager\Feature;

/**
* @category Zend
* @package Zend_ModuleManager
* @subpackage Feature
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
interface ControllerPluginProviderInterface
{
/**
* Expected to return \Zend\ServiceManager\Configuration object or array to
* seed such an object.
*
* @return array|\Zend\ServiceManager\Configuration
*/
public function getControllerPluginConfiguration();
}
40 changes: 40 additions & 0 deletions src/Feature/ControllerProviderInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend_ModuleManager
* @subpackage Feature
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

namespace Zend\ModuleManager\Feature;

/**
* @category Zend
* @package Zend_ModuleManager
* @subpackage Feature
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
interface ControllerProviderInterface
{
/**
* Expected to return \Zend\ServiceManager\Configuration object or array to
* seed such an object.
*
* @return array|\Zend\ServiceManager\Configuration
*/
public function getControllerConfiguration();
}
2 changes: 1 addition & 1 deletion src/Feature/InitProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ interface InitProviderInterface
/**
* Initialize workflow
*
* @param \Zend\ModuleManager\ModuleManagerInterface $manager
* @param ModuleManagerInterface $manager
* @return void
*/
public function init(ModuleManagerInterface $manager);
Expand Down
4 changes: 2 additions & 2 deletions src/Feature/ServiceProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
interface ServiceProviderInterface
{
/**
* Expected to return \Zend\ServiceManager\Configuration object or array to
* Expected to return \Zend\ServiceManager\Configuration object or array to
* seed such an object.
*
*
* @return array|\Zend\ServiceManager\Configuration
*/
public function getServiceConfiguration();
Expand Down
40 changes: 40 additions & 0 deletions src/Feature/ViewHelperProviderInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend_ModuleManager
* @subpackage Feature
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

namespace Zend\ModuleManager\Feature;

/**
* @category Zend
* @package Zend_ModuleManager
* @subpackage Feature
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
interface ViewHelperProviderInterface
{
/**
* Expected to return \Zend\ServiceManager\Configuration object or array to
* seed such an object.
*
* @return array|\Zend\ServiceManager\Configuration
*/
public function getViewHelperConfiguration();
}
1 change: 0 additions & 1 deletion src/Listener/AbstractListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ abstract class AbstractListener
* __construct
*
* @param ListenerOptions $options
* @return void
*/
public function __construct(ListenerOptions $options = null)
{
Expand Down
Loading

0 comments on commit 5c607c9

Please sign in to comment.