This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of git://github.com/zendframework/zf2 into string
- Loading branch information
44 parents
b138336
+
0ac8011
+
498f096
+
a002c09
+
a72d069
+
d696070
+
95b016c
+
f72f2a8
+
63f9aa4
+
c62eb22
+
56ff1e4
+
17753e6
+
261ddba
+
9c23ce8
+
d2ea716
+
8a38d20
+
29c3c53
+
9681f39
+
7dc76e1
+
7e1a689
+
f52efc3
+
5400ef9
+
2de31e5
+
5ef1929
+
5d57927
+
fb86f9e
+
a0d3c0d
+
754d50b
+
9ae8ef7
+
80bb476
+
7a4072e
+
3463608
+
a990d75
+
ed0260a
+
40ce9ee
+
540e95d
+
a1f3efa
+
1b4e215
+
9e453d7
+
1f0f6c3
+
512d4f8
+
702eefc
+
1f67b00
+
7233001
commit 5c607c9
Showing
34 changed files
with
584 additions
and
409 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,5 @@ | |
* @package Zend_ModuleManager | ||
*/ | ||
interface ExceptionInterface | ||
{} | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.