-
- Downloads
Merge branch 'zf-3.x'
No related branches found
No related tags found
Showing
- .gitignore 2 additions, 0 deletions.gitignore
- composer.json 9 additions, 9 deletionscomposer.json
- config/module.config.php 58 additions, 1 deletionconfig/module.config.php
- src/UnicaenLdap/Entity/Group.php 3 additions, 3 deletionssrc/UnicaenLdap/Entity/Group.php
- src/UnicaenLdap/Entity/People.php 16 additions, 15 deletionssrc/UnicaenLdap/Entity/People.php
- src/UnicaenLdap/LdapFactory.php 7 additions, 7 deletionssrc/UnicaenLdap/LdapFactory.php
- src/UnicaenLdap/Options/ModuleOptionsFactory.php 7 additions, 7 deletionssrc/UnicaenLdap/Options/ModuleOptionsFactory.php
- src/UnicaenLdap/Service/AbstractService.php 16 additions, 11 deletionssrc/UnicaenLdap/Service/AbstractService.php
- src/UnicaenLdap/Service/GenericFactory.php 31 additions, 10 deletionssrc/UnicaenLdap/Service/GenericFactory.php
- src/UnicaenLdap/Service/GroupFactory.php 31 additions, 10 deletionssrc/UnicaenLdap/Service/GroupFactory.php
- src/UnicaenLdap/Service/LdapGenericServiceAwareInterface.php 19 additions, 0 deletionssrc/UnicaenLdap/Service/LdapGenericServiceAwareInterface.php
- src/UnicaenLdap/Service/LdapGenericServiceAwareTrait.php 29 additions, 0 deletionssrc/UnicaenLdap/Service/LdapGenericServiceAwareTrait.php
- src/UnicaenLdap/Service/LdapGroupServiceAwareInterface.php 19 additions, 0 deletionssrc/UnicaenLdap/Service/LdapGroupServiceAwareInterface.php
- src/UnicaenLdap/Service/LdapGroupServiceAwareTrait.php 29 additions, 0 deletionssrc/UnicaenLdap/Service/LdapGroupServiceAwareTrait.php
- src/UnicaenLdap/Service/LdapPeopleServiceAwareInterface.php 10 additions, 1 deletionsrc/UnicaenLdap/Service/LdapPeopleServiceAwareInterface.php
- src/UnicaenLdap/Service/LdapPeopleServiceAwareTrait.php 8 additions, 0 deletionssrc/UnicaenLdap/Service/LdapPeopleServiceAwareTrait.php
- src/UnicaenLdap/Service/LdapStructureServiceAwareInterface.php 19 additions, 0 deletions...nicaenLdap/Service/LdapStructureServiceAwareInterface.php
- src/UnicaenLdap/Service/LdapStructureServiceAwareTrait.php 29 additions, 0 deletionssrc/UnicaenLdap/Service/LdapStructureServiceAwareTrait.php
- src/UnicaenLdap/Service/LdapSystemServiceAwareInterface.php 19 additions, 0 deletionssrc/UnicaenLdap/Service/LdapSystemServiceAwareInterface.php
- src/UnicaenLdap/Service/LdapSystemServiceAwareTrait.php 29 additions, 0 deletionssrc/UnicaenLdap/Service/LdapSystemServiceAwareTrait.php
.gitignore
0 → 100644
... | ... | @@ -3,17 +3,17 @@ |
"description": "Module Ldap des applications Unicaen", | ||
"require": { | ||
"php": "^5.6 || ^7.0", | ||
"zendframework/zend-servicemanager": "~2.4 || ^2.7", | ||
"zendframework/zend-modulemanager": "~2.4 || ^2.7", | ||
"zendframework/zend-config": "~2.4 || ^2.7", | ||
"zendframework/zend-serializer": "~2.4 || ^2.7", | ||
"zendframework/zend-log": "~2.4 || ^2.7", | ||
"zendframework/zend-i18n": "~2.4 || ^2.7", | ||
"zendframework/zend-stdlib": "~2.4 || ^2.7", | ||
"zendframework/zend-ldap": "~2.4 || ^2.7" | ||
"zendframework/zend-config": "^3.2", | ||
"zendframework/zend-i18n": "^2.9", | ||
"zendframework/zend-ldap": "^2.10", | ||
"zendframework/zend-log": "^2.10", | ||
"zendframework/zend-modulemanager": "^2.8", | ||
"zendframework/zend-serializer": "^2.9", | ||
"zendframework/zend-servicemanager": "^3.4", | ||
"zendframework/zend-stdlib": "^3.2" | ||
}, | ||
"require-dev": { | ||
"phpunit/PHPUnit": ">=3.7", | ||
"phpunit/phpunit": ">=3.7", | ||
"zendframework/zend-test": ">=2.2" | ||
}, | ||
"autoload": { | ||
... | ... |
Please register or sign in to comment