This repository has been archived by the owner on Feb 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
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
- Loading branch information
66 parents
98d26f5
+
8e251cd
+
d95b25a
+
0f89697
+
c941b0e
+
3dc45ae
+
180e140
+
67c3033
+
533cd3e
+
29e7718
+
936c9be
+
2d11657
+
fa66751
+
2b778cc
+
ba628cd
+
ff761e1
+
5b64ee3
+
9456811
+
1c2d797
+
46b0d8f
+
82264b3
+
39c88ce
+
cee064b
+
c303bed
+
ea247e3
+
1f87514
+
8896fc2
+
313a38d
+
42848d4
+
8f5c457
+
e035a2a
+
544e341
+
467f8b2
+
30bb6f0
+
f8cc896
+
2ee0afd
+
656f0b0
+
7092cb4
+
5e1b259
+
abb3ff8
+
39a873f
+
b6e6c92
+
83055d8
+
1dd5d72
+
9bc304a
+
479b8c7
+
41fab24
+
80aee85
+
3962f1e
+
6c6b004
+
acb7af7
+
39aca71
+
9d55623
+
c2210f2
+
50b7a31
+
327d366
+
00cfdb8
+
77c12db
+
4a66170
+
4bd5c7f
+
9549d20
+
d3a95e2
+
5e04377
+
d9da2cf
+
1049b39
+
001d281
commit e2db3b8
Showing
36 changed files
with
852 additions
and
380 deletions.
There are no files selected for viewing
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,31 @@ | ||
{ | ||
"name": "zendframework/zend-service-manager", | ||
"description": "Zend\\ServiceManager component", | ||
"name": "zendframework/zend-servicemanager", | ||
"description": " ", | ||
"license": "BSD-3-Clause", | ||
"keywords": [ | ||
"zf2", | ||
"service-manager" | ||
"servicemanager" | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Zend\\ServiceManager\\": "src/" | ||
"Zend\\ServiceManager": "src/" | ||
} | ||
}, | ||
"require": { | ||
"php": ">=5.3.23" | ||
"php": ">=5.3.3" | ||
}, | ||
"require-dev": { | ||
"fabpot/php-cs-fixer": "1.7.*", | ||
"satooshi/php-coveralls": "dev-master", | ||
"phpunit/PHPUnit": "~4.0" | ||
"suggest": { | ||
"zendframework/zend-di": "Zend\\Di component" | ||
}, | ||
"homepage": "https://github.com/zendframework/zend-service-manager", | ||
"autoload-dev": { | ||
"psr-4": { | ||
"ZendTest\\ServiceManager\\": "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 |
---|---|---|
@@ -1,9 +1,17 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_ServiceManager | ||
*/ | ||
|
||
namespace Zend\ServiceManager; | ||
|
||
interface AbstractFactoryInterface | ||
{ | ||
public function canCreateServiceWithName($name /*, $requestedName */); | ||
public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $name /*, $requestedName */); | ||
public function canCreateServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName); | ||
public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName); | ||
} |
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,16 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_ServiceManager | ||
*/ | ||
|
||
namespace Zend\ServiceManager; | ||
|
||
interface ConfigInterface | ||
{ | ||
public function configureServiceManager(ServiceManager $serviceManager); | ||
} |
Oops, something went wrong.