zendframework/zend-authentication
Zend\Authentication provides a flexible authentication API with adapters for common scenarios. This repository was abandoned on 2019-12-31 and has moved to laminas/laminas-authentication. Documentation: docs.zendframework.com/zend-authentication.
The adapters under the Zend\Authentication\Adapter\DbTable provide the
ability to authenticate against credentials stored in a database table, with
two approaches possible:
Because each adapter requires an instance of Zend\Db\Adapter\Adapter to be
passed to its constructor, each instance is bound to a particular database
connection. Other configuration options may be set through the constructor and
through instance methods, one for each option.
Zend\Authentication\Adapter\DbTable class is deprecatedThe concrete adapter Zend\Authentication\Adapter\DbTable has been
deprecated since 2.2.0, and its responsibilities have been split into two,
Zend\Authentication\Adapter\DbTable\CallbackCheck and
Zend\Authentication\Adapter\DbTable\CredentialTreatmentAdapter.
If you were using Zend\Authentication\Adapter\DbTable previously, you can
replace its usage with
Zend\Authentication\Adapter\DbTable\CredentialTreatmentAdapter, as the APIs
are the same; DbTable extends CredentialTreatmentAdapter at this time.
How can I help you explore Laravel packages today?