Search is not available for this dataset
id
stringlengths
1
8
text
stringlengths
72
9.81M
addition_count
int64
0
10k
commit_subject
stringlengths
0
3.7k
deletion_count
int64
0
8.43k
file_extension
stringlengths
0
32
lang
stringlengths
1
94
license
stringclasses
10 values
repo_name
stringlengths
9
59
10049350
<NME> AdapterChain.php <BEF> <?php namespace ZfcUser\Authentication\Adapter; use Zend\Authentication\Adapter\AdapterInterface; use Zend\Authentication\Result as AuthenticationResult; use Zend\EventManager\Event; use Zend\EventManager\EventInterface; use Zend\EventManager\EventManagerAwareTrait; use Zend\Stdlib\Reques...
7
Less fragile method of attaching default auth adapter.
6
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049351
<NME> AdapterChain.php <BEF> <?php namespace ZfcUser\Authentication\Adapter; use Zend\Authentication\Adapter\AdapterInterface; use Zend\Authentication\Result as AuthenticationResult; use Zend\EventManager\Event; use Zend\EventManager\EventInterface; use Zend\EventManager\EventManagerAwareTrait; use Zend\Stdlib\Reques...
7
Less fragile method of attaching default auth adapter.
6
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049352
<NME> Base.php <BEF> <?php namespace ZfcUser\Form; use Zend\Form\Element; class Base extends ProvidesEventsForm { public function __construct($name = null) { parent::__construct($name); $this->add(array( 'name' => 'username', 'options' => array( 'label...
1
Change 'label' to 'value' on submit element in ZfcUser\Form\Base
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049353
<NME> Base.php <BEF> <?php namespace ZfcUser\Form; use Zend\Form\Element; class Base extends ProvidesEventsForm { public function __construct($name = null) { parent::__construct($name); $this->add(array( 'name' => 'username', 'options' => array( 'label...
1
Change 'label' to 'value' on submit element in ZfcUser\Form\Base
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049354
<NME> Base.php <BEF> <?php namespace ZfcUser\Form; use Zend\Form\Element; class Base extends ProvidesEventsForm { public function __construct($name = null) { parent::__construct($name); $this->add(array( 'name' => 'username', 'options' => array( 'label...
5
Merge pull request #150 from akrabat/hotfix-hidden-field
4
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049355
<NME> Base.php <BEF> <?php namespace ZfcUser\Form; use Zend\Form\Element; class Base extends ProvidesEventsForm { public function __construct($name = null) { parent::__construct($name); $this->add(array( 'name' => 'username', 'options' => array( 'label...
5
Merge pull request #150 from akrabat/hotfix-hidden-field
4
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049356
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use DateTime; use Zend\Authentication\AuthenticationService; use Zend\Form\Form; use ZfcBase\EventManager\EventProvider; use ZfcBase\Mapper\DataMapperInterface as UserMapper; use ZfcUser\Mapper\UserMetaInterface as UserMetaMapper; use ZfcUser\Options\UserServiceOp...
80
Updates to completely remove DI and load stuff on-demand
13
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049357
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use DateTime; use Zend\Authentication\AuthenticationService; use Zend\Form\Form; use ZfcBase\EventManager\EventProvider; use ZfcBase\Mapper\DataMapperInterface as UserMapper; use ZfcUser\Mapper\UserMetaInterface as UserMetaMapper; use ZfcUser\Options\UserServiceOp...
80
Updates to completely remove DI and load stuff on-demand
13
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049358
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Interop\Container\ContainerInterface; use Zend\Form\Form; use Zend\ServiceManager\ServiceManagerAwareInterface; use Zend\ServiceManager\ServiceManager; use Zend\Stdlib\Hydrator\ClassMethods; use Zend\Crypt\Password\Bcrypt; use ZfcBase\EventManager\EventProvide...
2
Allow custom register form hydrator
3
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049359
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Interop\Container\ContainerInterface; use Zend\Form\Form; use Zend\ServiceManager\ServiceManagerAwareInterface; use Zend\ServiceManager\ServiceManager; use Zend\Stdlib\Hydrator\ClassMethods; use Zend\Crypt\Password\Bcrypt; use ZfcBase\EventManager\EventProvide...
2
Allow custom register form hydrator
3
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049360
<NME> README.md <BEF> ZfcUser ======= [![Build Status](https://travis-ci.org/ZF-Commons/ZfcUser.png)](https://travis-ci.org/ZF-Commons/ZfcUser) [![Code Coverage](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUser/badges/coverage.png?s=7d5932c77bea64a417ac8e3da51dca6da1fcb22e)](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs...
3
Update README.md
3
.md
md
bsd-3-clause
ZF-Commons/ZfcUser
10049361
<NME> README.md <BEF> ZfcUser ======= [![Build Status](https://travis-ci.org/ZF-Commons/ZfcUser.png)](https://travis-ci.org/ZF-Commons/ZfcUser) [![Code Coverage](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUser/badges/coverage.png?s=7d5932c77bea64a417ac8e3da51dca6da1fcb22e)](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs...
3
Update README.md
3
.md
md
bsd-3-clause
ZF-Commons/ZfcUser
10049362
<NME> ZfcUserAuthentication.php <BEF> <?php namespace ZfcUser\Controller\Plugin; use Zend\Mvc\Controller\Plugin\AbstractPlugin; use Zend\Authentication\AuthenticationService; use Zend\ServiceManager\ServiceLocatorInterface; use ZfcUser\Authentication\Adapter\AdapterChain as AuthAdapter; class ZfcUserAuthentication e...
2
Revert "Update controller plugin to pull locator from AbstractPluginManager" getServiceManager already calls getServiceLocator
4
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049363
<NME> ZfcUserAuthentication.php <BEF> <?php namespace ZfcUser\Controller\Plugin; use Zend\Mvc\Controller\Plugin\AbstractPlugin; use Zend\Authentication\AuthenticationService; use Zend\ServiceManager\ServiceLocatorInterface; use ZfcUser\Authentication\Adapter\AdapterChain as AuthAdapter; class ZfcUserAuthentication e...
2
Revert "Update controller plugin to pull locator from AbstractPluginManager" getServiceManager already calls getServiceLocator
4
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049364
<NME> ResolveTargetEntityListener.php <BEF> ADDFILE <MSG> Updates to make model/entity handling much more flexible New doctrine listener for dynamic mappings and a bunch of other stuff. <DFF> @@ -0,0 +1,75 @@ +<?php +namespace EdpUser\Event; + +use Doctrine\ORM\Event\LoadClassMetadataEventArgs; +use Doctrine\ORM\Mapp...
75
Updates to make model/entity handling much more flexible
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049365
<NME> ResolveTargetEntityListener.php <BEF> ADDFILE <MSG> Updates to make model/entity handling much more flexible New doctrine listener for dynamic mappings and a bunch of other stuff. <DFF> @@ -0,0 +1,75 @@ +<?php +namespace EdpUser\Event; + +use Doctrine\ORM\Event\LoadClassMetadataEventArgs; +use Doctrine\ORM\Mapp...
75
Updates to make model/entity handling much more flexible
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049366
<NME> UserController.php <BEF> <?php namespace ZfcUser\Controller; use Zend\Form\FormInterface; use Zend\Mvc\Controller\AbstractActionController; use Zend\ServiceManager\ServiceLocatorInterface; use Zend\Stdlib\ResponseInterface as Response; use Zend\Stdlib\Parameters; use Zend\View\Model\ViewModel; use ZfcUser\Servi...
0
Removed the keep-alive action
12
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049367
<NME> UserController.php <BEF> <?php namespace ZfcUser\Controller; use Zend\Form\FormInterface; use Zend\Mvc\Controller\AbstractActionController; use Zend\ServiceManager\ServiceLocatorInterface; use Zend\Stdlib\ResponseInterface as Response; use Zend\Stdlib\Parameters; use Zend\View\Model\ViewModel; use ZfcUser\Servi...
0
Removed the keep-alive action
12
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049368
<NME> ModuleOptions.php <BEF> <?php namespace ZfcUser\Options; use Zend\Stdlib\AbstractOptions; class ModuleOptions extends AbstractOptions implements UserControllerOptionsInterface, UserServiceOptionsInterface { /** * @var bool */ protected $useRedirectParameterIfPresent = true; /** ...
5
Disable strict options mode
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049369
<NME> ModuleOptions.php <BEF> <?php namespace ZfcUser\Options; use Zend\Stdlib\AbstractOptions; class ModuleOptions extends AbstractOptions implements UserControllerOptionsInterface, UserServiceOptionsInterface { /** * @var bool */ protected $useRedirectParameterIfPresent = true; /** ...
5
Disable strict options mode
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049370
<NME> UserController.php <BEF> <?php namespace ZfcUser\Controller; use Zend\Form\FormInterface; use Zend\Mvc\Controller\AbstractActionController; use Zend\ServiceManager\ServiceLocatorInterface; use Zend\Stdlib\ResponseInterface as Response; use Zend\Stdlib\Parameters; use Zend\View\Model\ViewModel; use ZfcUser\Servi...
3
Clear the auth adapter and identity if successfully posted a new login request
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049371
<NME> UserController.php <BEF> <?php namespace ZfcUser\Controller; use Zend\Form\FormInterface; use Zend\Mvc\Controller\AbstractActionController; use Zend\ServiceManager\ServiceLocatorInterface; use Zend\Stdlib\ResponseInterface as Response; use Zend\Stdlib\Parameters; use Zend\View\Model\ViewModel; use ZfcUser\Servi...
3
Clear the auth adapter and identity if successfully posted a new login request
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049372
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adapt...
1,099
CS fix CRLF to LF
1,099
.php
php
mit
nao-pon/flysystem-google-drive
10049373
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Interop\Container\ContainerInterface; use Zend\Form\Form; use Zend\ServiceManager\ServiceManagerAwareInterface; use Zend\ServiceManager\ServiceManager; use Zend\Stdlib\Hydrator\ClassMethods; use Zend\Crypt\Password\Bcrypt; use ZfcBase\EventManager\EventProvide...
1
Merge branch 'feature/custom-register-form-hydrator' of git://github.com/epokmedia/ZfcUser into 191
2
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049374
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Interop\Container\ContainerInterface; use Zend\Form\Form; use Zend\ServiceManager\ServiceManagerAwareInterface; use Zend\ServiceManager\ServiceManager; use Zend\Stdlib\Hydrator\ClassMethods; use Zend\Crypt\Password\Bcrypt; use ZfcBase\EventManager\EventProvide...
1
Merge branch 'feature/custom-register-form-hydrator' of git://github.com/epokmedia/ZfcUser into 191
2
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049375
<NME> ZfcUserIdentity.php <BEF> <?php namespace ZfcUser\View\Helper; use Zend\View\Helper\AbstractHelper; use Zend\Authentication\AuthenticationService; class ZfcUserIdentity extends AbstractHelper { /** * @var AuthenticationService */ protected $authService; /** * __invoke * * ...
2
Merge branch 'master' of git://github.com/dorongutman/ZfcUser into 213
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049376
<NME> ZfcUserIdentity.php <BEF> <?php namespace ZfcUser\View\Helper; use Zend\View\Helper\AbstractHelper; use Zend\Authentication\AuthenticationService; class ZfcUserIdentity extends AbstractHelper { /** * @var AuthenticationService */ protected $authService; /** * __invoke * * ...
2
Merge branch 'master' of git://github.com/dorongutman/ZfcUser into 213
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049377
<NME> README.md <BEF> # Docker Machine NFS ## Requirements * [Docker Machine](https://docs.docker.com/machine/) 0.5.0+ ## Mac OS X 10.9+ Activates [NFS](https://en.wikipedia.org/wiki/Network_File_System) for an existing boot2docker box created through [Docker Machine](https://docs.docker.com/machine/). :warning: T...
1
Update READEME.md to fix command (#69)
1
.md
md
mit
adlogix/docker-machine-nfs
10049378
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Zend\Authentication\AuthenticationService; use Zend\Form\Form; use Zend\ServiceManager\ServiceManagerAwareInterface; use Zend\ServiceManager\ServiceManager; use Zend\Crypt\Password\Bcrypt; use Zend\Stdlib\Hydrator; use Zend\Hydrator; use ZfcUser\Mapper\UserInt...
1
Remove ServiceManagerAwareInterface from User service
2
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049379
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Zend\Authentication\AuthenticationService; use Zend\Form\Form; use Zend\ServiceManager\ServiceManagerAwareInterface; use Zend\ServiceManager\ServiceManager; use Zend\Crypt\Password\Bcrypt; use Zend\Stdlib\Hydrator; use Zend\Hydrator; use ZfcUser\Mapper\UserInt...
1
Remove ServiceManagerAwareInterface from User service
2
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049380
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
1
fixes detecting hasDir of "root"
1
.php
php
mit
nao-pon/flysystem-google-drive
10049381
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
6
Added complete file name to normaliseObject() under 'name' key. (#35)
6
.php
php
mit
nao-pon/flysystem-google-drive
10049382
<NME> README.md <BEF> # Docker Machine NFS ## Requirements * [Docker Machine](https://docs.docker.com/machine/) 0.5.0+ ## Mac OS X 10.9+ Activates [NFS](https://en.wikipedia.org/wiki/Network_File_System) for an existing boot2docker box created through ## Install ```sh curl -s https://raw.githubusercontent.com/adl...
9
Merge pull request #54 from hakamadare/homebrew
0
.md
md
mit
adlogix/docker-machine-nfs
10049383
<NME> ChangeEmailFilter.php <BEF> <?php namespace ZfcUser\Form; use Zend\InputFilter\InputFilter; use ZfcUser\Options\AuthenticationOptionsInterface; class ChangeEmailFilter extends InputFilter { protected $emailValidator; public function __construct(AuthenticationOptionsInterface $options, $emailValidator)...
13
ensure email and email verify match
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049384
<NME> ChangeEmailFilter.php <BEF> <?php namespace ZfcUser\Form; use Zend\InputFilter\InputFilter; use ZfcUser\Options\AuthenticationOptionsInterface; class ChangeEmailFilter extends InputFilter { protected $emailValidator; public function __construct(AuthenticationOptionsInterface $options, $emailValidator)...
13
ensure email and email verify match
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049385
<NME> README.md <BEF> ZfcUser ======= [![Build Status](https://travis-ci.org/ZF-Commons/ZfcUser.png)](https://travis-ci.org/ZF-Commons/ZfcUser) [![Code Coverage](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUser/badges/coverage.png?s=7d5932c77bea64a417ac8e3da51dca6da1fcb22e)](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs...
1
Update README.md
1
.md
md
bsd-3-clause
ZF-Commons/ZfcUser
10049386
<NME> README.md <BEF> ZfcUser ======= [![Build Status](https://travis-ci.org/ZF-Commons/ZfcUser.png)](https://travis-ci.org/ZF-Commons/ZfcUser) [![Code Coverage](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUser/badges/coverage.png?s=7d5932c77bea64a417ac8e3da51dca6da1fcb22e)](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs...
1
Update README.md
1
.md
md
bsd-3-clause
ZF-Commons/ZfcUser
10049387
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Interop\Container\ContainerInterface; use Zend\Authentication\AuthenticationService; use Zend\Form\Form; use Zend\ServiceManager\ServiceManager; use Zend\Crypt\Password\Bcrypt; use Zend\Hydrator; use ZfcUser\EventManager\EventProvider; use ZfcUser\Mapper\UserI...
7
Merge branch 'pr138'
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049388
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Interop\Container\ContainerInterface; use Zend\Authentication\AuthenticationService; use Zend\Form\Form; use Zend\ServiceManager\ServiceManager; use Zend\Crypt\Password\Bcrypt; use Zend\Hydrator; use ZfcUser\EventManager\EventProvider; use ZfcUser\Mapper\UserI...
7
Merge branch 'pr138'
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049389
<NME> UserController.php <BEF> <?php namespace ZfcUser\Controller; use Zend\Form\FormInterface; use Zend\Mvc\Controller\AbstractActionController; use Zend\Stdlib\ResponseInterface as Response; use Zend\Stdlib\Parameters; use Zend\View\Model\ViewModel; use Zend\View\Model\JsonModel; use ZfcUser\Service\User as UserSer...
0
Removed unused import
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049390
<NME> UserController.php <BEF> <?php namespace ZfcUser\Controller; use Zend\Form\FormInterface; use Zend\Mvc\Controller\AbstractActionController; use Zend\Stdlib\ResponseInterface as Response; use Zend\Stdlib\Parameters; use Zend\View\Model\ViewModel; use Zend\View\Model\JsonModel; use ZfcUser\Service\User as UserSer...
0
Removed unused import
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049391
<NME> ModuleOptions.php <BEF> <?php namespace ZfcUser\Options; use Zend\Stdlib\AbstractOptions; class ModuleOptions extends AbstractOptions implements UserControllerOptionsInterface, UserServiceOptionsInterface { /** * Turn off strict options mode */ protected $__strictMode__ = false; ...
2
PSR-2 Cleanup
2
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049392
<NME> ModuleOptions.php <BEF> <?php namespace ZfcUser\Options; use Zend\Stdlib\AbstractOptions; class ModuleOptions extends AbstractOptions implements UserControllerOptionsInterface, UserServiceOptionsInterface { /** * Turn off strict options mode */ protected $__strictMode__ = false; ...
2
PSR-2 Cleanup
2
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049393
<NME> docker-machine-nfs.sh <BEF> #!/bin/bash # # The MIT License (MIT) # Copyright © 2015 Toni Van de Voorde <toni.vdv@gmail.com> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the “Software”), to deal # in the Software without re...
30
Merge pull request #25 from adlogix/feature/customize-nfs
4
.sh
sh
mit
adlogix/docker-machine-nfs
10049394
<NME> AbstractAdapter.php <BEF> <?php namespace ZfcUser\Authentication\Adapter; use Zend\Authentication\Storage; abstract class AbstractAdapter implements ChainableAdapter { /** * @var Storage\StorageInterface */ protected $storage; /** * Returns the persistent storage handler * ...
1
Merge pull request #192 from parktrip/patch-1
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049395
<NME> AbstractAdapter.php <BEF> <?php namespace ZfcUser\Authentication\Adapter; use Zend\Authentication\Storage; abstract class AbstractAdapter implements ChainableAdapter { /** * @var Storage\StorageInterface */ protected $storage; /** * Returns the persistent storage handler * ...
1
Merge pull request #192 from parktrip/patch-1
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049396
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_ChildList; use Google_Service_Drive_ParentReference; use Google_Service_Drive_Permission; use Google_Http_MediaFileU...
187
Merge branch 'api_v3'
131
.php
php
mit
nao-pon/flysystem-google-drive
10049397
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
5
fit the number of arguments of readStream() with interface
1
.php
php
mit
nao-pon/flysystem-google-drive
10049398
<NME> AbstractAdapter.php <BEF> <?php namespace ZfcUser\Authentication\Adapter; use Zend\Authentication\Storage; abstract class AbstractAdapter implements ChainableAdapter { /** * @var Storage\StorageInterface */ protected $storage; /** * Returns the persistent storage handler * ...
1
Update src/ZfcUser/Authentication/Adapter/AbstractAdapter.php
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049399
<NME> AbstractAdapter.php <BEF> <?php namespace ZfcUser\Authentication\Adapter; use Zend\Authentication\Storage; abstract class AbstractAdapter implements ChainableAdapter { /** * @var Storage\StorageInterface */ protected $storage; /** * Returns the persistent storage handler * ...
1
Update src/ZfcUser/Authentication/Adapter/AbstractAdapter.php
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049400
<NME> .travis.yml <BEF> language: php php: - 5.5 - 5.6 - 7.0 - hhvm before_script: - composer self-update - composer install --dev --prefer-source; - wget https://scrutinizer-ci.com/ocular.phar - mysql -e "create database IF NOT EXISTS zfc_user;" -uroot script: - ./vendor/bin/phpunit --bootstrap=te...
4
- revert travis and .gitignore
0
.yml
travis
bsd-3-clause
ZF-Commons/ZfcUser
10049401
<NME> .travis.yml <BEF> language: php php: - 5.5 - 5.6 - 7.0 - hhvm before_script: - composer self-update - composer install --dev --prefer-source; - wget https://scrutinizer-ci.com/ocular.phar - mysql -e "create database IF NOT EXISTS zfc_user;" -uroot script: - ./vendor/bin/phpunit --bootstrap=te...
4
- revert travis and .gitignore
0
.yml
travis
bsd-3-clause
ZF-Commons/ZfcUser
10049402
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
1
fix problem of recursive call to `getItems()`
2
.php
php
mit
nao-pon/flysystem-google-drive
10049403
<NME> docker-machine-nfs.sh <BEF> #!/bin/bash # # The MIT License (MIT) # Copyright © 2015 Toni Van de Voorde <toni.vdv@gmail.com> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the “Software”), to deal # in the Software without re...
3
Fixed bug with wrong quotes (#99)
1
.sh
sh
mit
adlogix/docker-machine-nfs
10049404
<NME> ModuleOptions.php <BEF> <?php namespace ZfcUser\Options; use Zend\Stdlib\AbstractOptions; class ModuleOptions extends AbstractOptions implements UserControllerOptionsInterface, UserServiceOptionsInterface { /** * Turn off strict options mode */ protected $__strictMode__ = false; ...
27
adding ModuleOptions to the mix
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049405
<NME> ModuleOptions.php <BEF> <?php namespace ZfcUser\Options; use Zend\Stdlib\AbstractOptions; class ModuleOptions extends AbstractOptions implements UserControllerOptionsInterface, UserServiceOptionsInterface { /** * Turn off strict options mode */ protected $__strictMode__ = false; ...
27
adding ModuleOptions to the mix
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049406
<NME> README.md <BEF> ZfcUser ======= [![Build Status](https://travis-ci.org/ZF-Commons/ZfcUser.png)](https://travis-ci.org/ZF-Commons/ZfcUser) [![Code Coverage](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUser/badges/coverage.png?s=7d5932c77bea64a417ac8e3da51dca6da1fcb22e)](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs...
1
Merge pull request #587 from johnnypeck/patch-1
1
.md
md
bsd-3-clause
ZF-Commons/ZfcUser
10049407
<NME> README.md <BEF> ZfcUser ======= [![Build Status](https://travis-ci.org/ZF-Commons/ZfcUser.png)](https://travis-ci.org/ZF-Commons/ZfcUser) [![Code Coverage](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUser/badges/coverage.png?s=7d5932c77bea64a417ac8e3da51dca6da1fcb22e)](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs...
1
Merge pull request #587 from johnnypeck/patch-1
1
.md
md
bsd-3-clause
ZF-Commons/ZfcUser
10049408
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
109
Support team drive and allow setting custom parameters for each commands (#30)
20
.php
php
mit
nao-pon/flysystem-google-drive
10049409
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
1
remove unnecessary `array_values()` in `listContents()` (#29)
1
.php
php
mit
nao-pon/flysystem-google-drive
10049410
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Interop\Container\ContainerInterface; use Zend\Authentication\AuthenticationService; use Zend\Form\Form; use Zend\ServiceManager\ServiceManager; use Zend\Crypt\Password\Bcrypt; use Zend\Hydrator; use ZfcUser\EventManager\EventProvider; use ZfcUser\Mapper\UserI...
1
Added setting password_cost option to the Bcrypt object in auth and registration.
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049411
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Interop\Container\ContainerInterface; use Zend\Authentication\AuthenticationService; use Zend\Form\Form; use Zend\ServiceManager\ServiceManager; use Zend\Crypt\Password\Bcrypt; use Zend\Hydrator; use ZfcUser\EventManager\EventProvider; use ZfcUser\Mapper\UserI...
1
Added setting password_cost option to the Bcrypt object in auth and registration.
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049412
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
9
fix #78 remove deprecated API batch request :
15
.php
php
mit
nao-pon/flysystem-google-drive
10049413
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
1
fix stat of path is '/'
1
.php
php
mit
nao-pon/flysystem-google-drive
10049414
<NME> module.config.php <BEF> <?php use ZfcUser\Controller\UserController; return array( 'view_manager' => array( 'template_path_stack' => array( 'zfcuser' => __DIR__ . '/../view', ), ), 'controllers' => array( 'factories' => array( 'zfcuser' => function($co...
0
Fix caching closure
18
.php
config
bsd-3-clause
ZF-Commons/ZfcUser
10049415
<NME> module.config.php <BEF> <?php use ZfcUser\Controller\UserController; return array( 'view_manager' => array( 'template_path_stack' => array( 'zfcuser' => __DIR__ . '/../view', ), ), 'controllers' => array( 'factories' => array( 'zfcuser' => function($co...
0
Fix caching closure
18
.php
config
bsd-3-clause
ZF-Commons/ZfcUser
10049416
<NME> changepassword.phtml <BEF> <h3>Change Password for <?php echo $this->zfcUserDisplayName() ?></h3> <?php $form = $this->changePasswordForm; $form->prepare(); $form->setAttribute('action', $this->url('zfcuser/changepassword')); $form->setAttribute('method', 'post'); $form->setAttribute('autocomplete', 'off'); $e...
5
Merge pull request #120 from bjyoungblood/feature/change-notifications
0
.phtml
phtml
bsd-3-clause
ZF-Commons/ZfcUser
10049417
<NME> changepassword.phtml <BEF> <h3>Change Password for <?php echo $this->zfcUserDisplayName() ?></h3> <?php $form = $this->changePasswordForm; $form->prepare(); $form->setAttribute('action', $this->url('zfcuser/changepassword')); $form->setAttribute('method', 'post'); $form->setAttribute('autocomplete', 'off'); $e...
5
Merge pull request #120 from bjyoungblood/feature/change-notifications
0
.phtml
phtml
bsd-3-clause
ZF-Commons/ZfcUser
10049418
<NME> BaseTest.php <BEF> <?php namespace ZfcUserTest\Form; use ZfcUser\Form\Base as Form; class BaseTest extends \PHPUnit_Framework_TestCase { public function testConstruct() { $form = new Form(); $elements = $form->getElements(); $this->assertArrayHasKey('username', $elements); ...
0
- "The closing brace for the class must go on the next line after the body"
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049419
<NME> BaseTest.php <BEF> <?php namespace ZfcUserTest\Form; use ZfcUser\Form\Base as Form; class BaseTest extends \PHPUnit_Framework_TestCase { public function testConstruct() { $form = new Form(); $elements = $form->getElements(); $this->assertArrayHasKey('username', $elements); ...
0
- "The closing brace for the class must go on the next line after the body"
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049420
<NME> UserServiceOptionsInterface.php <BEF> <?php namespace ZfcUser\Options; use ZfcUser\Options\RegistrationOptionsInterface; interface UserServiceOptionsInterface extends PasswordOptionsInterface, RegistrationOptionsInterface, AuthenticationOptionsInterface { public function setUserEntityClass($use...
11
- Removed deprectated config options - Removed redundant inheritances in ModuleOptions - Added missing config options - Added missing annotations in ModuleOptions and the implementing interfaces - Code cleanup - Updated README.md
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049421
<NME> UserServiceOptionsInterface.php <BEF> <?php namespace ZfcUser\Options; use ZfcUser\Options\RegistrationOptionsInterface; interface UserServiceOptionsInterface extends PasswordOptionsInterface, RegistrationOptionsInterface, AuthenticationOptionsInterface { public function setUserEntityClass($use...
11
- Removed deprectated config options - Removed redundant inheritances in ModuleOptions - Added missing config options - Added missing annotations in ModuleOptions and the implementing interfaces - Code cleanup - Updated README.md
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049422
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
1
filename passes to Util::guessMimeType on `upload()`
1
.php
php
mit
nao-pon/flysystem-google-drive
10049423
<NME> ModuleOptions.php <BEF> <?php namespace ZfcUser\Options; use Zend\Stdlib\AbstractOptions; class ModuleOptions extends AbstractOptions implements UserControllerOptionsInterface, UserServiceOptionsInterface { /** * Turn off strict options mode */ protected $__strictMode__ = false; ...
27
Merge branch 'feature/configurableAdapterChain' of git://github.com/pdobrigkeit/ZfcUser into 163
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049424
<NME> ModuleOptions.php <BEF> <?php namespace ZfcUser\Options; use Zend\Stdlib\AbstractOptions; class ModuleOptions extends AbstractOptions implements UserControllerOptionsInterface, UserServiceOptionsInterface { /** * Turn off strict options mode */ protected $__strictMode__ = false; ...
27
Merge branch 'feature/configurableAdapterChain' of git://github.com/pdobrigkeit/ZfcUser into 163
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049425
<NME> AbstractRecordTest.php <BEF> <?php namespace ZfcUserTest\Validator; use ZfcUser\Validator\AbstractRecord as Validator; class AbstractRecordTest extends \PHPUnit_Framework_TestCase { public function testConstruct() { $this->markTestIncomplete( 'This test has not been implemented yet....
87
Added tests for AbstractRecord validator
25
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049426
<NME> AbstractRecordTest.php <BEF> <?php namespace ZfcUserTest\Validator; use ZfcUser\Validator\AbstractRecord as Validator; class AbstractRecordTest extends \PHPUnit_Framework_TestCase { public function testConstruct() { $this->markTestIncomplete( 'This test has not been implemented yet....
87
Added tests for AbstractRecord validator
25
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049427
<NME> de_DE.po <BEF> ADDFILE <MSG> Merge pull request #397 from websafe/feature-language-de-de German translation language files [de_DE]. Deutsche Übersetzung. <DFF> @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Project-Id-Version: ZfcUser\n" +"Report-Msgid-Bugs-To: zf-devteam@zend.com\n" +"POT-Creation-Date: 2013-11-08 00...
128
Merge pull request #397 from websafe/feature-language-de-de
0
.po
po
bsd-3-clause
ZF-Commons/ZfcUser
10049428
<NME> de_DE.po <BEF> ADDFILE <MSG> Merge pull request #397 from websafe/feature-language-de-de German translation language files [de_DE]. Deutsche Übersetzung. <DFF> @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Project-Id-Version: ZfcUser\n" +"Report-Msgid-Bugs-To: zf-devteam@zend.com\n" +"POT-Creation-Date: 2013-11-08 00...
128
Merge pull request #397 from websafe/feature-language-de-de
0
.po
po
bsd-3-clause
ZF-Commons/ZfcUser
10049429
<NME> ModuleOptions.php <BEF> <?php namespace ZfcUser\Options; use Zend\Stdlib\AbstractOptions; class ModuleOptions extends AbstractOptions implements UserControllerOptionsInterface, UserServiceOptionsInterface { /** * Turn off strict options mode */ protected $__strictMode__ = false; ...
27
Merge branch '163' Close #163
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049430
<NME> ModuleOptions.php <BEF> <?php namespace ZfcUser\Options; use Zend\Stdlib\AbstractOptions; class ModuleOptions extends AbstractOptions implements UserControllerOptionsInterface, UserServiceOptionsInterface { /** * Turn off strict options mode */ protected $__strictMode__ = false; ...
27
Merge branch '163' Close #163
0
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049431
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adapt...
1,099
fix of wrong path of results of `createDir()`
1,099
.php
php
mit
nao-pon/flysystem-google-drive
10049432
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
4
cache 404 error on `getFileObject()`
2
.php
php
mit
nao-pon/flysystem-google-drive
10049433
<NME> README.md <BEF> ZfcUser ======= [![Build Status](https://travis-ci.org/ZF-Commons/ZfcUser.png)](https://travis-ci.org/ZF-Commons/ZfcUser) [![Code Coverage](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUser/badges/coverage.png?s=7d5932c77bea64a417ac8e3da51dca6da1fcb22e)](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs...
18
Update README.md
25
.md
md
bsd-3-clause
ZF-Commons/ZfcUser
10049434
<NME> README.md <BEF> ZfcUser ======= [![Build Status](https://travis-ci.org/ZF-Commons/ZfcUser.png)](https://travis-ci.org/ZF-Commons/ZfcUser) [![Code Coverage](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUser/badges/coverage.png?s=7d5932c77bea64a417ac8e3da51dca6da1fcb22e)](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs...
18
Update README.md
25
.md
md
bsd-3-clause
ZF-Commons/ZfcUser
10049435
<NME> docker-machine-nfs.sh <BEF> #!/bin/bash # # The MIT License (MIT) # Copyright © 2015 Toni Van de Voorde <toni.vdv@gmail.com> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the “Software”), to deal # in the Software without re...
1
terminate the prop_network_id in grep so it is not overly greedy (#72)
1
.sh
sh
mit
adlogix/docker-machine-nfs
10049436
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
0
remove debug code
1
.php
php
mit
nao-pon/flysystem-google-drive
10049437
<NME> UserController.php <BEF> <?php namespace ZfcUser\Controller; use Zend\Form\FormInterface; use Zend\Mvc\Controller\AbstractActionController; use Zend\ServiceManager\ServiceLocatorInterface; use Zend\Stdlib\ResponseInterface as Response; use Zend\Stdlib\Parameters; use Zend\View\Model\ViewModel; use ZfcUser\Servi...
5
Update src/ZfcUser/Controller/UserController.php
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049438
<NME> UserController.php <BEF> <?php namespace ZfcUser\Controller; use Zend\Form\FormInterface; use Zend\Mvc\Controller\AbstractActionController; use Zend\ServiceManager\ServiceLocatorInterface; use Zend\Stdlib\ResponseInterface as Response; use Zend\Stdlib\Parameters; use Zend\View\Model\ViewModel; use ZfcUser\Servi...
5
Update src/ZfcUser/Controller/UserController.php
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049439
<NME> UserHydratorTest.php <BEF> <?php namespace ZfcUserTest\Mapper; use ZfcUser\Mapper\UserHydrator as Hydrator; class UserHydratorTest extends \PHPUnit_Framework_TestCase { protected $hydrator; public function setUp() { $hydrator = new Hydrator; $this->hydrator = $hydrator; } ...
6
Fix cover methods for UserHydrator
6
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049440
<NME> UserHydratorTest.php <BEF> <?php namespace ZfcUserTest\Mapper; use ZfcUser\Mapper\UserHydrator as Hydrator; class UserHydratorTest extends \PHPUnit_Framework_TestCase { protected $hydrator; public function setUp() { $hydrator = new Hydrator; $this->hydrator = $hydrator; } ...
6
Fix cover methods for UserHydrator
6
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049441
<NME> README.md <BEF> ZfcUser ======= [![Build Status](https://travis-ci.org/ZF-Commons/ZfcUser.png)](https://travis-ci.org/ZF-Commons/ZfcUser) [![Code Coverage](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUser/badges/coverage.png?s=7d5932c77bea64a417ac8e3da51dca6da1fcb22e)](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs...
1
Update the path to schema.sql
1
.md
md
bsd-3-clause
ZF-Commons/ZfcUser
10049442
<NME> README.md <BEF> ZfcUser ======= [![Build Status](https://travis-ci.org/ZF-Commons/ZfcUser.png)](https://travis-ci.org/ZF-Commons/ZfcUser) [![Code Coverage](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUser/badges/coverage.png?s=7d5932c77bea64a417ac8e3da51dca6da1fcb22e)](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs...
1
Update the path to schema.sql
1
.md
md
bsd-3-clause
ZF-Commons/ZfcUser
10049443
<NME> changepassword.phtml <BEF> ADDFILE <MSG> Added Change Password Functionality. Current status: Changes password in database but authentication then fails. <DFF> @@ -0,0 +1,42 @@ +<h3>Change Password for <?php echo $this->zfcUserDisplayName() ?><h3> +<?php + +$form = $this->changePasswordForm; + +$form->prepare();...
42
Added Change Password Functionality. Current status: Changes password in database but authentication then fails.
0
.phtml
phtml
bsd-3-clause
ZF-Commons/ZfcUser
10049444
<NME> changepassword.phtml <BEF> ADDFILE <MSG> Added Change Password Functionality. Current status: Changes password in database but authentication then fails. <DFF> @@ -0,0 +1,42 @@ +<h3>Change Password for <?php echo $this->zfcUserDisplayName() ?><h3> +<?php + +$form = $this->changePasswordForm; + +$form->prepare();...
42
Added Change Password Functionality. Current status: Changes password in database but authentication then fails.
0
.phtml
phtml
bsd-3-clause
ZF-Commons/ZfcUser
10049445
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
142
reformat source code
122
.php
php
mit
nao-pon/flysystem-google-drive
10049446
<NME> GoogleDriveAdapter.php <BEF> <?php namespace Hypweb\Flysystem\GoogleDrive; use Google_Service_Drive; use Google_Service_Drive_DriveFile; use Google_Service_Drive_FileList; use Google_Service_Drive_Permission; use Google_Http_MediaFileUpload; use League\Flysystem\Adapter\AbstractAdapter; use League\Flysystem\Adap...
256
!IMPORTANT! switch to listing of based on item ID
320
.php
php
mit
nao-pon/flysystem-google-drive
10049447
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Interop\Container\ContainerInterface; use Zend\Authentication\AuthenticationService; use Zend\Form\Form; use Zend\ServiceManager\ServiceManager; use Zend\Crypt\Password\Bcrypt; use Zend\Hydrator; use ZfcUser\EventManager\EventProvider; use ZfcUser\Mapper\UserI...
1
Merge pull request #186 from atans/patch-1
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049448
<NME> User.php <BEF> <?php namespace ZfcUser\Service; use Interop\Container\ContainerInterface; use Zend\Authentication\AuthenticationService; use Zend\Form\Form; use Zend\ServiceManager\ServiceManager; use Zend\Crypt\Password\Bcrypt; use Zend\Hydrator; use ZfcUser\EventManager\EventProvider; use ZfcUser\Mapper\UserI...
1
Merge pull request #186 from atans/patch-1
1
.php
php
bsd-3-clause
ZF-Commons/ZfcUser
10049449
<NME> schema.pgsql.sql <BEF> ADDFILE <MSG> Merge pull request #215 from Richard-Rumpel/patch-1 Create schema.pgsql.sql <DFF> @@ -0,0 +1,13 @@ +CREATE TABLE public.user +( ...
13
Merge pull request #215 from Richard-Rumpel/patch-1
0
.sql
pgsql
bsd-3-clause
ZF-Commons/ZfcUser