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 |
|---|---|---|---|---|---|---|---|---|
10048950 | <NME> User.php
<BEF> <?php
namespace ZfcUser\Mapper;
use ZfcUser\Entity\UserInterface as UserEntityInterface;
use Zend\Hydrator\HydratorInterface;
class User extends AbstractDbMapper implements UserInterface
{
protected $tableName = 'user';
public function findByEmail($email)
{
$select = $this... | 3 | fix for ZfcBase/Mapper/AbstractDbMapper::getSelect update | 6 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048951 | <NME> User.php
<BEF> <?php
namespace ZfcUser\Mapper;
use ZfcUser\Entity\UserInterface as UserEntityInterface;
use Zend\Hydrator\HydratorInterface;
class User extends AbstractDbMapper implements UserInterface
{
protected $tableName = 'user';
public function findByEmail($email)
{
$select = $this... | 3 | fix for ZfcBase/Mapper/AbstractDbMapper::getSelect update | 6 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048952 | <NME> module.config.php
<BEF> <?php
return array(
'view_manager' => array(
'template_path_stack' => array(
'zfcuser' => __DIR__ . '/../view',
),
),
'router' => array(
'routes' => array(
'zfcuser' => array(
'type' => 'Literal',
... | 2 | Merge pull request #275 from drigani/master | 14 | .php | config | bsd-3-clause | ZF-Commons/ZfcUser |
10048953 | <NME> module.config.php
<BEF> <?php
return array(
'view_manager' => array(
'template_path_stack' => array(
'zfcuser' => __DIR__ . '/../view',
),
),
'router' => array(
'routes' => array(
'zfcuser' => array(
'type' => 'Literal',
... | 2 | Merge pull request #275 from drigani/master | 14 | .php | config | bsd-3-clause | ZF-Commons/ZfcUser |
10048954 | <NME> RegisterFilter.php
<BEF> <?php
namespace ZfcUser\Form;
use ZfcUser\InputFilter\ProvidesEventsInputFilter;
use ZfcUser\Options\RegistrationOptionsInterface;
class RegisterFilter extends ProvidesEventsInputFilter
{
protected $emailValidator;
protected $usernameValidator;
/**
* @var Registration... | 1 | Display came not being saved | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048955 | <NME> RegisterFilter.php
<BEF> <?php
namespace ZfcUser\Form;
use ZfcUser\InputFilter\ProvidesEventsInputFilter;
use ZfcUser\Options\RegistrationOptionsInterface;
class RegisterFilter extends ProvidesEventsInputFilter
{
protected $emailValidator;
protected $usernameValidator;
/**
* @var Registration... | 1 | Display came not being saved | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048956 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 12 | s/configs/config and updated docs | 25 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048957 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 12 | s/configs/config and updated docs | 25 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048958 | <NME> msgIds.php
<BEF> <?php
/**
* Ids for poedit
* @method translate()
*/
translate('Username');
translate('Email');
translate('New Email');
translate('Verify New Email');
translate('Display Name');
translate('Password');
translate('Password Verify');
translate('Current Password');
translate('Verify New Password');... | 4 | fr_FR.po file génération and translation | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048959 | <NME> msgIds.php
<BEF> <?php
/**
* Ids for poedit
* @method translate()
*/
translate('Username');
translate('Email');
translate('New Email');
translate('Verify New Email');
translate('Display Name');
translate('Password');
translate('Password Verify');
translate('Current Password');
translate('Verify New Password');... | 4 | fr_FR.po file génération and translation | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048960 | <NME> LoginFilter.php
<BEF> <?php
namespace ZfcUser\Form;
use ZfcUser\InputFilter\ProvidesEventsInputFilter;
use ZfcUser\Options\AuthenticationOptionsInterface;
class LoginFilter extends ProvidesEventsInputFilter
{
public function __construct(AuthenticationOptionsInterface $options)
{
$identityParams... | 1 | Merge pull request #128 from Slamdunk/patch-1 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048961 | <NME> LoginFilter.php
<BEF> <?php
namespace ZfcUser\Form;
use ZfcUser\InputFilter\ProvidesEventsInputFilter;
use ZfcUser\Options\AuthenticationOptionsInterface;
class LoginFilter extends ProvidesEventsInputFilter
{
public function __construct(AuthenticationOptionsInterface $options)
{
$identityParams... | 1 | Merge pull request #128 from Slamdunk/patch-1 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048962 | <NME> UserMongoDB.php
<BEF> ADDFILE
<MSG> Merge remote-tracking branch 'SpiffyJr/feature/mongodb-update'
<DFF> @@ -0,0 +1,64 @@
+<?php
+
+namespace ZfcUser\Mapper;
+
+use Doctrine\ODM\MongoDB\DocumentManager,
+ ZfcUser\Module,
+ ZfcUser\Model\UserInterface as UserModelInterface,
+ ZfcBase\EventManager\EventPr... | 64 | Merge remote-tracking branch 'SpiffyJr/feature/mongodb-update' | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048963 | <NME> UserMongoDB.php
<BEF> ADDFILE
<MSG> Merge remote-tracking branch 'SpiffyJr/feature/mongodb-update'
<DFF> @@ -0,0 +1,64 @@
+<?php
+
+namespace ZfcUser\Mapper;
+
+use Doctrine\ODM\MongoDB\DocumentManager,
+ ZfcUser\Module,
+ ZfcUser\Model\UserInterface as UserModelInterface,
+ ZfcBase\EventManager\EventPr... | 64 | Merge remote-tracking branch 'SpiffyJr/feature/mongodb-update' | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048964 | <NME> Register.php
<BEF> <?php
namespace ZfcUser\Form;
use Zend\Form\Element\Captcha as Captcha;
use ZfcUser\Options\RegistrationOptionsInterface;
class Register extends Base
{
protected $captchaElement= null;
/**
* @var RegistrationOptionsInterface
*/
protected $options;
/**
* @para... | 12 | Registration form: rename get/setOptions to get/setRegistrationOptions | 12 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048965 | <NME> Register.php
<BEF> <?php
namespace ZfcUser\Form;
use Zend\Form\Element\Captcha as Captcha;
use ZfcUser\Options\RegistrationOptionsInterface;
class Register extends Base
{
protected $captchaElement= null;
/**
* @var RegistrationOptionsInterface
*/
protected $options;
/**
* @para... | 12 | Registration form: rename get/setOptions to get/setRegistrationOptions | 12 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048966 | <NME> schema.sql
<BEF> -- Auto-generated by Doctrine; not my mess!
CREATE TABLE user (user_id INT AUTO_INCREMENT NOT NULL, username VARCHAR(255) DEFAULT NULL, email VARCHAR(255) NOT NULL, display_name VARCHAR(50) DEFAULT NULL, password VARCHAR(128) NOT NULL, salt VARCHAR(16) NOT NULL, hash_algorithm VARCHAR(50) NOT NUL... | 1 | Update schema file | 1 | .sql | sql | bsd-3-clause | ZF-Commons/ZfcUser |
10048967 | <NME> schema.sql
<BEF> -- Auto-generated by Doctrine; not my mess!
CREATE TABLE user (user_id INT AUTO_INCREMENT NOT NULL, username VARCHAR(255) DEFAULT NULL, email VARCHAR(255) NOT NULL, display_name VARCHAR(50) DEFAULT NULL, password VARCHAR(128) NOT NULL, salt VARCHAR(16) NOT NULL, hash_algorithm VARCHAR(50) NOT NUL... | 1 | Update schema file | 1 | .sql | sql | bsd-3-clause | ZF-Commons/ZfcUser |
10048968 | <NME> User.php
<BEF> <?php
namespace ZfcUser\Mapper;
use ZfcUser\Entity\UserInterface as UserEntityInterface;
use Zend\Hydrator\HydratorInterface;
class User extends AbstractDbMapper implements UserInterface
{
protected $tableName = 'user';
public function findByEmail($email)
{
$select = $this-... | 1 | Merge pull request #389 from dzhibas/patch-1 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048969 | <NME> User.php
<BEF> <?php
namespace ZfcUser\Mapper;
use ZfcUser\Entity\UserInterface as UserEntityInterface;
use Zend\Hydrator\HydratorInterface;
class User extends AbstractDbMapper implements UserInterface
{
protected $tableName = 'user';
public function findByEmail($email)
{
$select = $this-... | 1 | Merge pull request #389 from dzhibas/patch-1 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048970 | <NME> ZfcUserLoginWidget.php
<BEF> <?php
namespace ZfcUser\View\Helper;
use Zend\View\Helper\AbstractHelper;
use ZfcUser\Form\Login as LoginForm;
use Zend\View\Model\ViewModel;
class ZfcUserLoginWidget extends AbstractHelper
{
/**
* Login Form
* @var LoginForm
*/
protected $loginForm;
/**... | 2 | Fixed PSR2 violatons with trailing spaces. | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048971 | <NME> ZfcUserLoginWidget.php
<BEF> <?php
namespace ZfcUser\View\Helper;
use Zend\View\Helper\AbstractHelper;
use ZfcUser\Form\Login as LoginForm;
use Zend\View\Model\ViewModel;
class ZfcUserLoginWidget extends AbstractHelper
{
/**
* Login Form
* @var LoginForm
*/
protected $loginForm;
/**... | 2 | Fixed PSR2 violatons with trailing spaces. | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048972 | <NME> register.phtml
<BEF> <h1><?php echo $this->translate('Register'); ?></h1>
<?php
if (!$this->enableRegistration) {
print "Registration is disabled";
return;
}
$form = $this->registerForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/register'));
$form->setAttribute('method', 'post')... | 1 | Merge pull request #123 from cgmartin/fix/form-button | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048973 | <NME> register.phtml
<BEF> <h1><?php echo $this->translate('Register'); ?></h1>
<?php
if (!$this->enableRegistration) {
print "Registration is disabled";
return;
}
$form = $this->registerForm;
$form->prepare();
$form->setAttribute('action', $this->url('zfcuser/register'));
$form->setAttribute('method', 'post')... | 1 | Merge pull request #123 from cgmartin/fix/form-button | 1 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048974 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\EventManager\EventInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use Zend\Session\Container as SessionContai... | 1 | Merge branch 'master' of github.com:ZF-Commons/ZfcUser | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048975 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\EventManager\EventInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use Zend\Session\Container as SessionContai... | 1 | Merge branch 'master' of github.com:ZF-Commons/ZfcUser | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048976 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 6 | Updates to match the redirect functionality | 1 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048977 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 6 | Updates to match the redirect functionality | 1 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048978 | <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... | 2 | fixes issue #31 - bootlocal.sh is not written | 0 | .sh | sh | mit | adlogix/docker-machine-nfs |
10048979 | <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 | Use printf in favor of echo for reproducibility (#83) | 1 | .sh | sh | mit | adlogix/docker-machine-nfs |
10048980 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 9 | Add version information to README | 0 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048981 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 9 | Add version information to README | 0 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10048982 | <NME> RegisterFilter.php
<BEF> <?php
namespace ZfcUser\Form;
use ZfcUser\InputFilter\ProvidesEventsInputFilter;
use ZfcUser\Options\RegistrationOptionsInterface;
class RegisterFilter extends ProvidesEventsInputFilter
{
protected $emailValidator;
protected $usernameValidator;
/**
* @var Registration... | 0 | No maximum length on password | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048983 | <NME> RegisterFilter.php
<BEF> <?php
namespace ZfcUser\Form;
use ZfcUser\InputFilter\ProvidesEventsInputFilter;
use ZfcUser\Options\RegistrationOptionsInterface;
class RegisterFilter extends ProvidesEventsInputFilter
{
protected $emailValidator;
protected $usernameValidator;
/**
* @var Registration... | 0 | No maximum length on password | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048984 | <NME> zfcuser.global.php.dist
<BEF> <?php
/**
* ZfcUser Configuration
*
* If you have a ./config/autoload/ directory set up for your project, you can
* drop this config file in it and change the values as you wish.
*/
$settings = array(
/**
* Zend\Db\Adapter\Adapter DI Alias
*
* Please specify t... | 1 | Merge pull request #595 from chukShirley/comment-typo | 1 | .dist | global | bsd-3-clause | ZF-Commons/ZfcUser |
10048985 | <NME> zfcuser.global.php.dist
<BEF> <?php
/**
* ZfcUser Configuration
*
* If you have a ./config/autoload/ directory set up for your project, you can
* drop this config file in it and change the values as you wish.
*/
$settings = array(
/**
* Zend\Db\Adapter\Adapter DI Alias
*
* Please specify t... | 1 | Merge pull request #595 from chukShirley/comment-typo | 1 | .dist | global | bsd-3-clause | ZF-Commons/ZfcUser |
10048986 | <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... | 4 | pass changePassword and changeEmail data to event | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048987 | <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... | 4 | pass changePassword and changeEmail data to event | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048988 | <NME> AbstractAdapterExtension.php
<BEF> <?php
namespace ZfcUserTest\Authentication\Adapter\TestAsset;
use ZfcUser\Authentication\Adapter\AbstractAdapter;
use ZfcUser\Authentication\Adapter\AdapterChainEvent;
class AbstractAdapterExtension extends AbstractAdapter
{
public function authenticate(\Zend\EventManager... | 2 | * Use EventManagerAwareTrait * Fixed resetAdapters test, removed deprecated/removed CallbackHandler * Type hint to UserInterface in db related classes (mapper, hydrator) * Type hint to interfaces in general where possible * Type hint to ContainerInterface instead of ServiceManager * Removed unused code * Code st... | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048989 | <NME> AbstractAdapterExtension.php
<BEF> <?php
namespace ZfcUserTest\Authentication\Adapter\TestAsset;
use ZfcUser\Authentication\Adapter\AbstractAdapter;
use ZfcUser\Authentication\Adapter\AdapterChainEvent;
class AbstractAdapterExtension extends AbstractAdapter
{
public function authenticate(\Zend\EventManager... | 2 | * Use EventManagerAwareTrait * Fixed resetAdapters test, removed deprecated/removed CallbackHandler * Type hint to UserInterface in db related classes (mapper, hydrator) * Type hint to interfaces in general where possible * Type hint to ContainerInterface instead of ServiceManager * Removed unused code * Code st... | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048990 | <NME> register.phtml
<BEF> <h1>Register</h1>
<?php
if(!\ZfcUser\Module::getOption('enable_registration'))
{
print "Registration is disabled";
return;
}
?>
$form->setAttribute('method', 'post');
$form->setAttribute('autocomplete', 'off');
?>
<?php echo $this->partial('_form.phtml', ['form' => $form]);... | 7 | Initial work on refactoring | 3 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048991 | <NME> register.phtml
<BEF> <h1>Register</h1>
<?php
if(!\ZfcUser\Module::getOption('enable_registration'))
{
print "Registration is disabled";
return;
}
?>
$form->setAttribute('method', 'post');
$form->setAttribute('autocomplete', 'off');
?>
<?php echo $this->partial('_form.phtml', ['form' => $form]);... | 7 | Initial work on refactoring | 3 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10048992 | <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... | 4 | fix: for vsphere-driver, determine ip to use from routing table (#85) | 2 | .sh | sh | mit | adlogix/docker-machine-nfs |
10048993 | <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... | 4 | Merge pull request #91 from prolic/fixes | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048994 | <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... | 4 | Merge pull request #91 from prolic/fixes | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048995 | <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... | 2 | Merge pull request #39 from jbarbuto/bootlocal-script-sync | 2 | .sh | sh | mit | adlogix/docker-machine-nfs |
10048996 | <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 | include `extension` into metadata results | 2 | .php | php | mit | nao-pon/flysystem-google-drive |
10048997 | <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... | 156 | set fetch fields of service->files->listFiles() | 26 | .php | php | mit | nao-pon/flysystem-google-drive |
10048998 | <NME> UserControllerTest.php
<BEF> <?php
namespace ZfcUserTest\Controller;
use Zend\Form\FormElementManager;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser\Controller\UserController as Controller;
use Zend\Http\Response;
use ZfcUser\Service\User as UserService;
use Zend\Form\Form;
use ZfcUser\Options\ModuleOpti... | 496 | add some controller test | 43 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10048999 | <NME> UserControllerTest.php
<BEF> <?php
namespace ZfcUserTest\Controller;
use Zend\Form\FormElementManager;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser\Controller\UserController as Controller;
use Zend\Http\Response;
use ZfcUser\Service\User as UserService;
use Zend\Form\Form;
use ZfcUser\Options\ModuleOpti... | 496 | add some controller test | 43 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049000 | <NME> UserControllerTest.php
<BEF> <?php
namespace ZfcUserTest\Controller;
use Zend\Form\FormElementManager;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser\Controller\UserController as Controller;
use Zend\Http\Response;
use Zend\Stdlib\Parameters;
use Zend\ServiceManager\ServiceLocatorInterface;
use ZfcUser\Se... | 2 | Fix login/logout redirect method | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049001 | <NME> UserControllerTest.php
<BEF> <?php
namespace ZfcUserTest\Controller;
use Zend\Form\FormElementManager;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser\Controller\UserController as Controller;
use Zend\Http\Response;
use Zend\Stdlib\Parameters;
use Zend\ServiceManager\ServiceLocatorInterface;
use ZfcUser\Se... | 2 | Fix login/logout redirect method | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049002 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Storage;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Storage;
use Zend\Authentication\Storage\StorageInterface;
use Zend\ServiceManager\ServiceManager;
use ZfcUser\Mapper\UserInterface as UserMapper;
class Db implements Storage\StorageIn... | 1 | Little cleanup | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049003 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Storage;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Storage;
use Zend\Authentication\Storage\StorageInterface;
use Zend\ServiceManager\ServiceManager;
use ZfcUser\Mapper\UserInterface as UserMapper;
class Db implements Storage\StorageIn... | 1 | Little cleanup | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049004 | <NME> schema.sqlite.sql
<BEF> CREATE TABLE user
(
user_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
username VARCHAR(255) DEFAULT NULL UNIQUE,
email VARCHAR(255) NOT NULL UNIQUE,
display_name VARCHAR(50) DEFAULT NULL,
password VARCHAR(128) NOT NULL
);
);
<MSG> Allowing NU... | 1 | Allowing NULL email addresses | 1 | .sql | sqlite | bsd-3-clause | ZF-Commons/ZfcUser |
10049005 | <NME> schema.sqlite.sql
<BEF> CREATE TABLE user
(
user_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
username VARCHAR(255) DEFAULT NULL UNIQUE,
email VARCHAR(255) NOT NULL UNIQUE,
display_name VARCHAR(50) DEFAULT NULL,
password VARCHAR(128) NOT NULL
);
);
<MSG> Allowing NU... | 1 | Allowing NULL email addresses | 1 | .sql | sqlite | bsd-3-clause | ZF-Commons/ZfcUser |
10049006 | <NME> Login.php
<BEF> <?php
namespace ZfcUser\Form;
use Zend\Form\Element;
use ZfcUser\Options\AuthenticationOptionsInterface;
class Login extends ProvidesEventsForm
{
/**
* @var AuthenticationOptionsInterface
*/
protected $authOptions;
public function __construct($name, AuthenticationOptionsI... | 12 | Login Form: Move label from 'attributes' to 'options' key when defining elements | 6 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049007 | <NME> Login.php
<BEF> <?php
namespace ZfcUser\Form;
use Zend\Form\Element;
use ZfcUser\Options\AuthenticationOptionsInterface;
class Login extends ProvidesEventsForm
{
/**
* @var AuthenticationOptionsInterface
*/
protected $authOptions;
public function __construct($name, AuthenticationOptionsI... | 12 | Login Form: Move label from 'attributes' to 'options' key when defining elements | 6 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049008 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 10 | Merge pull request #1 from akrabat/hotfix/naming_fixes | 10 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10049009 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 10 | Merge pull request #1 from akrabat/hotfix/naming_fixes | 10 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10049010 | <NME> ModuleOptionsTest.php
<BEF> <?php
namespace ZfcUserTest\Options;
use ZfcUser\Options\ModuleOptions as Options;
class ModuleOptionsTest extends \PHPUnit_Framework_TestCase
{
public function testSetLoginRedirectRoute()
{
$this->markTestIncomplete(
'This test has not been implemented y... | 243 | Added options test | 138 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049011 | <NME> ModuleOptionsTest.php
<BEF> <?php
namespace ZfcUserTest\Options;
use ZfcUser\Options\ModuleOptions as Options;
class ModuleOptionsTest extends \PHPUnit_Framework_TestCase
{
public function testSetLoginRedirectRoute()
{
$this->markTestIncomplete(
'This test has not been implemented y... | 243 | Added options test | 138 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049012 | <NME> AuthenticationOptionsInterface.php
<BEF> <?php
namespace ZfcUser\Options;
interface AuthenticationOptionsInterface extends PasswordOptionsInterface
{
/**
* set login after registration
*
* @param bool $loginAfterRegistration
*/
public function setLoginAfterRegistration($loginAfterReg... | 0 | Remove get/setLoginAfterRegistration from AuthenticationOptionsInterface | 13 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049013 | <NME> AuthenticationOptionsInterface.php
<BEF> <?php
namespace ZfcUser\Options;
interface AuthenticationOptionsInterface extends PasswordOptionsInterface
{
/**
* set login after registration
*
* @param bool $loginAfterRegistration
*/
public function setLoginAfterRegistration($loginAfterReg... | 0 | Remove get/setLoginAfterRegistration from AuthenticationOptionsInterface | 13 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049014 | <NME> RedirectCallback.php
<BEF> <?php
namespace ZfcUser\Controller;
use Zend\Mvc\Application;
use Zend\Router\RouteInterface;
use Zend\Router\Exception;
use Zend\Http\PhpEnvironment\Response;
use ZfcUser\Options\ModuleOptions;
/**
* Buils a redirect response based on the current routing and parameters
*/
class Re... | 1 | Merge pull request #521 from BnitoBzh/patch-1 | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049015 | <NME> RedirectCallback.php
<BEF> <?php
namespace ZfcUser\Controller;
use Zend\Mvc\Application;
use Zend\Router\RouteInterface;
use Zend\Router\Exception;
use Zend\Http\PhpEnvironment\Response;
use ZfcUser\Options\ModuleOptions;
/**
* Buils a redirect response based on the current routing and parameters
*/
class Re... | 1 | Merge pull request #521 from BnitoBzh/patch-1 | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049016 | <NME> UserTest.php
<BEF> <?php
namespace ZfcUserTest\Service;
use ZfcUser\Service\User as Service;
use Zend\Crypt\Password\Bcrypt;
class UserTest extends \PHPUnit_Framework_TestCase
{
protected $service;
protected $options;
protected $serviceManager;
protected $formHydrator;
protected $eventM... | 143 | Merge pull request #536 from adamlundrigan/hotfix/523 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049017 | <NME> UserTest.php
<BEF> <?php
namespace ZfcUserTest\Service;
use ZfcUser\Service\User as Service;
use Zend\Crypt\Password\Bcrypt;
class UserTest extends \PHPUnit_Framework_TestCase
{
protected $service;
protected $options;
protected $serviceManager;
protected $formHydrator;
protected $eventM... | 143 | Merge pull request #536 from adamlundrigan/hotfix/523 | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049018 | <NME> docker-machine-nfs.sh
<BEF> #!/bin/sh
#
# 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 rest... | 86 | Add support for WSL with HaneWIN NFS server (#97) | 20 | .sh | sh | mit | adlogix/docker-machine-nfs |
10049019 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\ServiceManager\ServiceManagerAwareInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use ZfcUser\Authentication\... | 15 | Updated for session nulling | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049020 | <NME> Db.php
<BEF> <?php
namespace ZfcUser\Authentication\Adapter;
use Interop\Container\ContainerInterface;
use Zend\Authentication\Result as AuthenticationResult;
use Zend\ServiceManager\ServiceManagerAwareInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use ZfcUser\Authentication\... | 15 | Updated for session nulling | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049021 | <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... | 2 | Revert "Changed loginAction to expect redirect as a post param to be consistent with authenticate." | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049022 | <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... | 2 | Revert "Changed loginAction to expect redirect as a post param to be consistent with authenticate." | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049023 | <NME> ZfcUserLoginWidget.php
<BEF> ADDFILE
<MSG> Added view helper to provide login form widget
<DFF> @@ -0,0 +1,52 @@
+<?php
+
+namespace ZfcUser\View\Helper;
+
+use Zend\View\Helper\AbstractHelper,
+ ZfcUser\Form\Login as LoginForm,
+ Zend\View\Model\ViewModel;
+
+class ZfcUserLoginWidget extends AbstractHelpe... | 52 | Added view helper to provide login form widget | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049024 | <NME> ZfcUserLoginWidget.php
<BEF> ADDFILE
<MSG> Added view helper to provide login form widget
<DFF> @@ -0,0 +1,52 @@
+<?php
+
+namespace ZfcUser\View\Helper;
+
+use Zend\View\Helper\AbstractHelper,
+ ZfcUser\Form\Login as LoginForm,
+ Zend\View\Model\ViewModel;
+
+class ZfcUserLoginWidget extends AbstractHelpe... | 52 | Added view helper to provide login form widget | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049025 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 2 | [#28] Revert phrase "connection" back to "PDO connection" | 2 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10049026 | <NME> README.md
<BEF> ZfcUser
=======
[](https://travis-ci.org/ZF-Commons/ZfcUser)
[](https://scrutinizer-ci.com/g/ZF-Commons/ZfcUs... | 2 | [#28] Revert phrase "connection" back to "PDO connection" | 2 | .md | md | bsd-3-clause | ZF-Commons/ZfcUser |
10049027 | <NME> changepassword.phtml
<BEF> <h3>Change Password for <?php echo $this->zfcUserDisplayName() ?><h3>
<?php
$form = $this->changePasswordForm;
<div class="alert alert-error"><?php echo $this->translate('Unable to update your password. Please try again.'); ?></div>
<?php endif; ?>
<?php
$form = $this->changePasswordF... | 5 | Merge remote-tracking branch 'bjyoungblood/feature/refactor-usercontroller' | 5 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10049028 | <NME> changepassword.phtml
<BEF> <h3>Change Password for <?php echo $this->zfcUserDisplayName() ?><h3>
<?php
$form = $this->changePasswordForm;
<div class="alert alert-error"><?php echo $this->translate('Unable to update your password. Please try again.'); ?></div>
<?php endif; ?>
<?php
$form = $this->changePasswordF... | 5 | Merge remote-tracking branch 'bjyoungblood/feature/refactor-usercontroller' | 5 | .phtml | phtml | bsd-3-clause | ZF-Commons/ZfcUser |
10049029 | <NME> Register.php
<BEF> <?php
namespace ZfcUser\Form;
use Zend\Form\Element\Captcha as Captcha;
use ZfcUser\Options\RegistrationOptionsInterface;
class Register extends Base
{
protected $captchaElement= null;
/**
* @var RegistrationOptionsInterface
*/
protected $registrationOptions;
/**
... | 1 | Captcha modifications. | 16 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049030 | <NME> Register.php
<BEF> <?php
namespace ZfcUser\Form;
use Zend\Form\Element\Captcha as Captcha;
use ZfcUser\Options\RegistrationOptionsInterface;
class Register extends Base
{
protected $captchaElement= null;
/**
* @var RegistrationOptionsInterface
*/
protected $registrationOptions;
/**
... | 1 | Captcha modifications. | 16 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049031 | <NME> Login.php
<BEF> <?php
namespace ZfcUser\Form;
use Zend\Form\Element;
use ZfcUser\Options\AuthenticationOptionsInterface;
class Login extends ProvidesEventsForm
{
/**
* @var AuthenticationOptionsInterface
*/
protected $authOptions;
public function __construct($name, AuthenticationOptionsI... | 1 | Merge pull request #79 from SocalNick/hotfix/get-event-manager | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049032 | <NME> Login.php
<BEF> <?php
namespace ZfcUser\Form;
use Zend\Form\Element;
use ZfcUser\Options\AuthenticationOptionsInterface;
class Login extends ProvidesEventsForm
{
/**
* @var AuthenticationOptionsInterface
*/
protected $authOptions;
public function __construct($name, AuthenticationOptionsI... | 1 | Merge pull request #79 from SocalNick/hotfix/get-event-manager | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049033 | <NME> module.config.php
<BEF> <?php
return array(
'view_manager' => array(
'template_path_stack' => array(
'zfcuser' => __DIR__ . '/../view',
),
),
'router' => array(
'routes' => array(
'zfcuser' => array(
'type' => 'Literal',
... | 8 | Updated module.config.php for feature/view-layer from mwop. Renamed views to view to conform to standards. | 16 | .php | config | bsd-3-clause | ZF-Commons/ZfcUser |
10049034 | <NME> module.config.php
<BEF> <?php
return array(
'view_manager' => array(
'template_path_stack' => array(
'zfcuser' => __DIR__ . '/../view',
),
),
'router' => array(
'routes' => array(
'zfcuser' => array(
'type' => 'Literal',
... | 8 | Updated module.config.php for feature/view-layer from mwop. Renamed views to view to conform to standards. | 16 | .php | config | bsd-3-clause | ZF-Commons/ZfcUser |
10049035 | <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 | Merge pull request #639 from Eye4web/hotfix/servicemanager | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049036 | <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 | Merge pull request #639 from Eye4web/hotfix/servicemanager | 2 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049037 | <NME> UserControllerFactory.php
<BEF> <?php
namespace ZfcUser\Factory\Controller;
use Interop\Container\ContainerInterface;
use Zend\Mvc\Controller\ControllerManager;
use Zend\ServiceManager\Factory\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser... | 1 | Fix controller getServiceLocator deprecation notice | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049038 | <NME> UserControllerFactory.php
<BEF> <?php
namespace ZfcUser\Factory\Controller;
use Interop\Container\ContainerInterface;
use Zend\Mvc\Controller\ControllerManager;
use Zend\ServiceManager\Factory\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser... | 1 | Fix controller getServiceLocator deprecation notice | 0 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049039 | <NME> UserControllerTest.php
<BEF> <?php
namespace ZfcUserTest\Controller;
use Zend\Form\FormElementManager;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser\Controller\UserController as Controller;
use Zend\Http\Response;
use Zend\Stdlib\Parameters;
use Zend\ServiceManager\ServiceLocatorInterface;
use ZfcUser\Se... | 180 | add register tests | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049040 | <NME> UserControllerTest.php
<BEF> <?php
namespace ZfcUserTest\Controller;
use Zend\Form\FormElementManager;
use ZfcUser\Controller\RedirectCallback;
use ZfcUser\Controller\UserController as Controller;
use Zend\Http\Response;
use Zend\Stdlib\Parameters;
use Zend\ServiceManager\ServiceLocatorInterface;
use ZfcUser\Se... | 180 | add register tests | 4 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049041 | <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... | 2 | Support docker-machine-driver-vmware and use machine ip for route (#95) | 3 | .sh | sh | mit | adlogix/docker-machine-nfs |
10049042 | <NME> README.md
<BEF> # Docker Machine NFS
## Requirements
[Docker Machine](https://docs.docker.com/machine/).
## Requirements
* Mac OS X 10.9+
* [Docker Machine](https://docs.docker.com/machine/) 0.5.0+
:warning: There can be an issue with the NFS under Mac OS X High Sierra (see issue [#79](https://github.com/adl... | 1 | Update README.md (#81) | 0 | .md | md | mit | adlogix/docker-machine-nfs |
10049043 | <NME> User.php
<BEF> <?php
namespace ZfcUser\Service;
use Interop\Container\ContainerInterface;
use Zend\Authentication\AuthenticationService;
use Zend\ServiceManager\ServiceManagerAwareInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use ZfcBase\EventManager\EventProvider;
use ZfcUs... | 34 | Merge pull request #256 from Freeaqingme/dynamicly | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049044 | <NME> User.php
<BEF> <?php
namespace ZfcUser\Service;
use Interop\Container\ContainerInterface;
use Zend\Authentication\AuthenticationService;
use Zend\ServiceManager\ServiceManagerAwareInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Crypt\Password\Bcrypt;
use ZfcBase\EventManager\EventProvider;
use ZfcUs... | 34 | Merge pull request #256 from Freeaqingme/dynamicly | 1 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |
10049045 | <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 | [FIX] Correct check of nfs.conf for vmwarefusion (#89) | 1 | .sh | sh | mit | adlogix/docker-machine-nfs |
10049046 | <NME> module.config.php
<BEF> <?php
return array(
'user_model_class' => 'ZfcUser\Model\User',
'usermeta_model_class' => 'ZfcUser\Model\UserMeta',
'enable_registration' => true,
'enable_username' => false,
'enable_display_name' => false,
... | 4 | Add comment to module.config.php explaining the auth_identity_fields override | 0 | .php | config | bsd-3-clause | ZF-Commons/ZfcUser |
10049047 | <NME> module.config.php
<BEF> <?php
return array(
'user_model_class' => 'ZfcUser\Model\User',
'usermeta_model_class' => 'ZfcUser\Model\UserMeta',
'enable_registration' => true,
'enable_username' => false,
'enable_display_name' => false,
... | 4 | Add comment to module.config.php explaining the auth_identity_fields override | 0 | .php | config | bsd-3-clause | ZF-Commons/ZfcUser |
10049048 | <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 README.md | 1 | .md | md | mit | adlogix/docker-machine-nfs |
10049049 | <NME> Module.php
<BEF> <?php
namespace ZfcUser;
use Zend\ModuleManager\Feature\ConfigProviderInterface;
use Zend\ModuleManager\Feature\ControllerPluginProviderInterface;
use Zend\ModuleManager\Feature\ControllerProviderInterface;
use Zend\ModuleManager\Feature\ServiceProviderInterface;
class Module implements
Co... | 6 | Update view helpers to pull service locator from SM | 3 | .php | php | bsd-3-clause | ZF-Commons/ZfcUser |