repo stringlengths 7 63 | file_url stringlengths 81 284 | file_path stringlengths 5 200 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:02:33 2026-01-05 05:24:06 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
Rct567/DomQuery | https://github.com/Rct567/DomQuery/blob/4bc72c3da2e82eb7c08fa30582f71e91843423df/tests/Rct567/DomQuery/Tests/DomQueryTest.php | tests/Rct567/DomQuery/Tests/DomQueryTest.php | <?php
namespace Rct567\DomQuery\Tests;
use Rct567\DomQuery\DomQuery;
use Rct567\DomQuery\DomQueryNodes;
class DomQueryTest extends \PHPUnit\Framework\TestCase
{
/*
* Test filters, first and last (with method and pseudo selector)
*/
public function testFirstAndLastFilters()
{
$html = '<d... | php | MIT | 4bc72c3da2e82eb7c08fa30582f71e91843423df | 2026-01-05T05:09:18.310463Z | false |
Rct567/DomQuery | https://github.com/Rct567/DomQuery/blob/4bc72c3da2e82eb7c08fa30582f71e91843423df/tests/Rct567/DomQuery/Tests/DomQueryMiscellaneousElementMethodTest.php | tests/Rct567/DomQuery/Tests/DomQueryMiscellaneousElementMethodTest.php | <?php
namespace Rct567\DomQuery\Tests;
use Rct567\DomQuery\DomQuery;
class DomQueryMiscellaneousElementMethodTest extends \PHPUnit\Framework\TestCase
{
/*
* Test get data
*/
public function testGetData()
{
$dom = new DomQuery('<div data-role="page"></div>');
$this->assertEquals... | php | MIT | 4bc72c3da2e82eb7c08fa30582f71e91843423df | 2026-01-05T05:09:18.310463Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/autoload.php | autoload.php | <?php
spl_autoload_register(function ($class) {
// the package namespace
$ns = 'Aura\Auth';
// what prefixes should be recognized?
$prefixes = array(
"{$ns}\_Config\\" => array(
__DIR__ . '/config',
),
"{$ns}\\" => array(
__DIR__ . '/src',
__... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/phpunit.php | phpunit.php | <?php
error_reporting(E_ALL);
$autoloader = __DIR__ . '/vendor/autoload.php';
if (! file_exists($autoloader)) {
echo "Composer autoloader not found: $autoloader" . PHP_EOL;
echo "Please issue 'composer install' and try again." . PHP_EOL;
exit(1);
}
require $autoloader;
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/AuthFactory.php | src/AuthFactory.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth;
use Aura\Auth\Adapter;
use Aura\Auth\Service;
use Aura\Auth\Session;
use Aura\Auth\Session\SessionInterface;
use Aura\Auth\Session\SegmentInterface;
use Aura\Auth\Verifier;
u... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Auth.php | src/Auth.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth;
use Aura\Auth\Session\SegmentInterface;
use Aura\Auth\Session\SessionInterface;
use Aura\Auth\Session\Timer;
/**
*
* The current user (authenticated or otherwise).
*
* @... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception.php | src/Exception.php | <?php
/**
*
* This file is part of the Aura project for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth;
/**
*
* Base exception class.
*
* @package Aura.Auth
*
*/
class Exception extends \Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Status.php | src/Status.php | <?php
/**
*
* This file is part of the Aura project for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth;
/**
*
* Constants for authentication statuses.
*
* @package Aura.Auth
*
*/
class Status
{
/**
*
* The user is anonymous/unauthenticated.
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Phpfunc.php | src/Phpfunc.php | <?php
/**
*
* This file is part of the Aura project for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth;
/**
*
* Proxy for the ease of testing PHP functions.
*
* http://mikenaberezny.com/2007/08/01/wrapping-php-functions-for-testability/
*
* @package Aura.Auth
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Verifier/PasswordVerifier.php | src/Verifier/PasswordVerifier.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Verifier;
/**
*
* Htaccess password Verifier
*
* @package Aura.Auth
*
*/
class PasswordVerifier implements VerifierInterface
{
/**
*
* The hashing algorith... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Verifier/VerifierInterface.php | src/Verifier/VerifierInterface.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Verifier;
/**
*
* Password Verifier
*
* @package Aura.Auth
*
*/
interface VerifierInterface
{
/**
*
* Verify that a plaintext password matches a hashed one... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Verifier/HtpasswdVerifier.php | src/Verifier/HtpasswdVerifier.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Verifier;
/**
*
* Verfies passwords from htpasswd files; supports APR1/MD5, DES, SHA1, and
* Bcrypt.
*
* The APR1/MD5 implementation was originally written by Mike Wallne... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/BindFailed.php | src/Exception/BindFailed.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* Binding to a network service (LDAP etc) failed.
*
* @package Aura.Auth
*
*/
class BindFailed extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/UsernameNotFound.php | src/Exception/UsernameNotFound.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* Username not found.
*
* @package Aura.Auth
*
*/
class UsernameNotFound extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/PasswordMissing.php | src/Exception/PasswordMissing.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* Missing password.
*
* @package Aura.Auth
*
*/
class PasswordMissing extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/UsernameMissing.php | src/Exception/UsernameMissing.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* Missing username.
*
* @package Aura.Auth
*
*/
class UsernameMissing extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/PasswordIncorrect.php | src/Exception/PasswordIncorrect.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* PasswordIncorrect.
*
* @package Aura.Auth
*
*/
class PasswordIncorrect extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/FileNotFound.php | src/Exception/FileNotFound.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* File does not exists
*
* @package Aura.Auth
*
*/
class FileNotFound extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/AlgorithmNotAvailable.php | src/Exception/AlgorithmNotAvailable.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* Algorithm not available or unknown
*
* @package Aura.Auth
*
*/
class AlgorithmNotAvailable extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/FileNotReadable.php | src/Exception/FileNotReadable.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* File is not readable
*
* @package Aura.Auth
*
*/
class FileNotReadable extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/UsernameColumnNotSpecified.php | src/Exception/UsernameColumnNotSpecified.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* Username column not specified.
*
* @package Aura.Auth
*
*/
class UsernameColumnNotSpecified extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/MultipleMatches.php | src/Exception/MultipleMatches.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* Found multiple matches for the credentials.
*
* @package Aura.Auth
*
*/
class MultipleMatches extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/PasswordColumnNotSpecified.php | src/Exception/PasswordColumnNotSpecified.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* Password column not specified.
*
* @package Aura.Auth
*
*/
class PasswordColumnNotSpecified extends Exception
{
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Exception/ConnectionFailed.php | src/Exception/ConnectionFailed.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Exception;
use Aura\Auth\Exception;
/**
*
* Connection to a network service (IMAP/LDAP/etc) failed.
*
* @package Aura.Auth
*
*/
class ConnectionFailed extends Exception... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Adapter/HtpasswdAdapter.php | src/Adapter/HtpasswdAdapter.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Adapter;
use Aura\Auth\Exception;
use Aura\Auth\Verifier\VerifierInterface;
/**
*
* Authenticate against a file generated by htpassword.
*
* Format for each line is "user... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Adapter/ImapAdapter.php | src/Adapter/ImapAdapter.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Adapter;
use Aura\Auth\Exception;
use Aura\Auth\Phpfunc;
/**
*
* Authenticate against an IMAP, POP3, or NNTP server.
*
* @package Aura.Auth
*
*/
class ImapAdapter exten... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Adapter/NullAdapter.php | src/Adapter/NullAdapter.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Adapter;
/**
*
* NullAdapter
*
* @package Aura.Auth
*
*/
class NullAdapter extends AbstractAdapter
{
/**
*
* login
*
* @param array $input
*... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Adapter/AdapterInterface.php | src/Adapter/AdapterInterface.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Adapter;
use Aura\Auth\Auth;
use Aura\Auth\Status;
/**
*
* Abstract Authentication Storage.
*
* @package Aura.Auth
*
*/
interface AdapterInterface
{
/**
*
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Adapter/AbstractAdapter.php | src/Adapter/AbstractAdapter.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Adapter;
use Aura\Auth\Exception;
use Aura\Auth\Status;
use Aura\Auth\Auth;
/**
*
* Authentication adapter
*
* @package Aura.Auth
*
*/
abstract class AbstractAdapter im... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Adapter/LdapAdapter.php | src/Adapter/LdapAdapter.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Adapter;
use Aura\Auth\Exception;
use Aura\Auth\Phpfunc;
/**
*
* Authenticate against an LDAP server.
*
* @package Aura.Auth
*
*/
class LdapAdapter extends AbstractAdap... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Adapter/PdoAdapter.php | src/Adapter/PdoAdapter.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Adapter;
use PDO;
use Aura\Auth\Verifier\VerifierInterface;
use Aura\Auth\Exception;
/**
*
* Authenticate against an SQL database table via PDO.
*
* @package Aura.Auth
*... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Session/SegmentInterface.php | src/Session/SegmentInterface.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Session;
/**
*
* Interface for segment of the $_SESSION array.
*
* @package Aura.Auth
*
*/
interface SegmentInterface
{
/**
*
* Gets a value from the segme... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Session/Segment.php | src/Session/Segment.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Session;
/**
*
* A $_SESSION segment; it attaches to $_SESSION lazily (i.e., only after a
* session becomes available.)
*
* @package Aura.Auth
*
*/
class Segment implem... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Session/NullSession.php | src/Session/NullSession.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Session;
/**
*
* Session manager.
*
* @package Aura.Auth
*
*/
class NullSession implements SessionInterface
{
/**
*
* Start Session
*
* @return b... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Session/NullSegment.php | src/Session/NullSegment.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Session;
/**
*
* A $this->data segment; it attaches to $this->data lazily (i.e., only after a
* session becomes available.)
*
* @package Aura.Auth
*
*/
class NullSegmen... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Session/SessionInterface.php | src/Session/SessionInterface.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Session;
/**
*
* Interface for a session manager.
*
* @package Aura.Auth
*
*/
interface SessionInterface
{
/**
*
* Starts a session.
*
*/
pub... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Session/Timer.php | src/Session/Timer.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Session;
use Aura\Auth\Exception;
use Aura\Auth\Status;
/**
*
* Timer
*
* @package Aura.Auth
*
*/
class Timer
{
/**
* ini_gc_maxlifetime
*
* @var int... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Session/Session.php | src/Session/Session.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Session;
/**
*
* Session manager.
*
* @package Aura.Auth
*
*/
class Session implements SessionInterface
{
/**
*
* A copy of the $_COOKIE array.
*
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Service/LoginService.php | src/Service/LoginService.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Service;
use Aura\Auth\Adapter\AdapterInterface;
use Aura\Auth\Session\SessionInterface;
use Aura\Auth\Status;
use Aura\Auth\Auth;
/**
*
* Login handler
*
* @package Aura... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Service/LogoutService.php | src/Service/LogoutService.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Service;
use Aura\Auth\Adapter\AdapterInterface;
use Aura\Auth\Session\SessionInterface;
use Aura\Auth\Status;
use Aura\Auth\Auth;
/**
*
* Logout handler.
*
* @package Au... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/src/Service/ResumeService.php | src/Service/ResumeService.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\Service;
use Aura\Auth\Auth;
use Aura\Auth\Adapter\AdapterInterface;
use Aura\Auth\Session\SessionInterface;
use Aura\Auth\Session\Timer;
/**
*
* Resume handler.
*
* @pac... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/PhpfuncTest.php | tests/PhpfuncTest.php | <?php
namespace Aura\Auth;
class PhpfuncTest extends \PHPUnit\Framework\TestCase
{
protected $phpfunc;
protected function setUp() : void
{
$this->phpfunc = new Phpfunc;
}
public function testInstance()
{
$this->assertEquals(
str_replace('Hello', 'Hi', 'Hello Aura')... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/FakePdo.php | tests/FakePdo.php | <?php
namespace Aura\Auth;
use PDO;
class FakePdo extends PDO
{
public function __construct()
{
// do nothing
}
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/AuthFactoryTest.php | tests/AuthFactoryTest.php | <?php
namespace Aura\Auth;
use PDO;
use Aura\Auth\Session\Session;
use Aura\Auth\Session\Segment;
use Aura\Auth\Verifier\FakeVerifier;
class AuthFactoryTest extends \PHPUnit\Framework\TestCase
{
protected $factory;
protected function setUp() : void
{
$this->factory = new AuthFactory($_COOKIE);
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/AuthTest.php | tests/AuthTest.php | <?php
namespace Aura\Auth;
use Aura\Auth\Session\FakeSegment;
use Aura\Auth\Status;
class AuthTest extends \PHPUnit\Framework\TestCase
{
protected $auth;
protected $segment;
protected function setUp() : void
{
$this->segment = new FakeSegment;
$this->auth = new Auth($this->segment);
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Verifier/HtpasswdVerifierTest.php | tests/Verifier/HtpasswdVerifierTest.php | <?php
namespace Aura\Auth\Verifier;
class HtpasswdVerifierTest extends \PHPUnit\Framework\TestCase
{
public function setUp() : void
{
$this->verifier = new HtpasswdVerifier;
}
public function testDes()
{
$hashvalue = 'ngPfeOKlo3uIs';
$this->assertTrue($this->verifier->verif... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Verifier/PasswordVerifierTest.php | tests/Verifier/PasswordVerifierTest.php | <?php
namespace Aura\Auth\Verifier;
class PasswordVerifierTest extends \PHPUnit\Framework\TestCase
{
public function testBcrypt()
{
if (! defined('PASSWORD_BCRYPT')) {
$this->markTestSkipped("password_hash functionality not available. Install ircmaxell/password-compat for 5.3+");
}
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Verifier/FakeVerifier.php | tests/Verifier/FakeVerifier.php | <?php
namespace Aura\Auth\Verifier;
class FakeVerifier implements VerifierInterface
{
public function verify($plaintext, $hashvalue, array $extra = array())
{
throw new \Exception('should not be calling this');
}
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Adapter/LdapAdapterTest.php | tests/Adapter/LdapAdapterTest.php | <?php
namespace Aura\Auth\Adapter;
use Aura\Auth\Phpfunc;
class LdapAdapterTest extends \PHPUnit\Framework\TestCase
{
protected $adapter;
protected $phpfunc;
protected function setUp() : void
{
$this->phpfunc = $this->getMockBuilder('Aura\Auth\Phpfunc')
->setMethods(array(
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Adapter/PdoAdapterTest.php | tests/Adapter/PdoAdapterTest.php | <?php
namespace Aura\Auth\Adapter;
use PDO;
use Aura\Auth\Verifier\PasswordVerifier;
class PdoAdapterTest extends \PHPUnit\Framework\TestCase
{
protected $adapter;
protected $pdo;
protected function setUp() : void
{
if (false === extension_loaded('pdo_sqlite')) {
$this->markTestS... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Adapter/ImapAdapterTest.php | tests/Adapter/ImapAdapterTest.php | <?php
namespace Aura\Auth\Adapter;
use Aura\Auth\Phpfunc;
class ImapAdapterTest extends \PHPUnit\Framework\TestCase
{
protected $phpfunc;
protected $adapter;
protected function setUp() : void
{
$this->phpfunc = $this->getMockBuilder('Aura\Auth\Phpfunc')
->setMethods(array(
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Adapter/FakeAdapter.php | tests/Adapter/FakeAdapter.php | <?php
namespace Aura\Auth\Adapter;
use Aura\Auth\Auth;
use Aura\Auth\Exception;
class FakeAdapter extends AbstractAdapter
{
protected $accounts = array();
public function __construct(array $accounts = array())
{
$this->accounts = $accounts;
}
public function login(array $input)
{
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Adapter/HtpasswdAdapterTest.php | tests/Adapter/HtpasswdAdapterTest.php | <?php
namespace Aura\Auth\Adapter;
use Aura\Auth\Verifier\HtpasswdVerifier;
class HtpasswdAdapterTest extends \PHPUnit\Framework\TestCase
{
protected $adapter;
protected function setUp() : void
{
$file = dirname(__DIR__) . DIRECTORY_SEPARATOR . 'fake.htpasswd';
$this->setAdapter($file);
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Adapter/NullAdapterTest.php | tests/Adapter/NullAdapterTest.php | <?php
namespace Aura\Auth\Adapter;
class NullAdapterTest extends \PHPUnit\Framework\TestCase
{
protected $adapter;
protected function setUp() : void
{
$this->adapter = new NullAdapter;
}
public function testLogin()
{
list($name, $data) = $this->adapter->login(array());
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Session/FakeSession.php | tests/Session/FakeSession.php | <?php
namespace Aura\Auth\Session;
class FakeSession implements SessionInterface
{
public $started = false;
public $resumed = false;
public $session_id = 1;
public $allow_start = true;
public $allow_resume = true;
public function start()
{
$this->started = $this->allow_start;
... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Session/SessionTest.php | tests/Session/SessionTest.php | <?php
namespace Aura\Auth\Session;
/**
* @runTestsInSeparateProcesses
*/
class SessionTest extends \PHPUnit\Framework\TestCase
{
protected function setUp() : void
{
$this->setSession();
}
protected function setSession(array $cookie = array())
{
$this->session = new Session($cooki... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Session/TimerTest.php | tests/Session/TimerTest.php | <?php
namespace Aura\Auth\Session;
use Aura\Auth\Status;
class TimerTest extends \PHPUnit\Framework\TestCase
{
protected $timer;
protected function setUp() : void
{
$this->timer = new Timer(3600, 86400);
}
public function testHasExpired()
{
$this->assertFalse($this->timer->ha... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Session/NullSessionTest.php | tests/Session/NullSessionTest.php | <?php
namespace Aura\Auth\Session;
class NullSessionTest extends \PHPUnit\Framework\TestCase
{
protected $session;
protected function setUp() : void
{
$this->session = new NullSession;
}
public function testStart()
{
$this->assertTrue(session_id() === '');
$this->asser... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Session/FakeSegment.php | tests/Session/FakeSegment.php | <?php
namespace Aura\Auth\Session;
class FakeSegment implements SegmentInterface
{
public function get($key, $alt = null)
{
if (isset($this->$key)) {
return $this->$key;
}
return $alt;
}
public function set($key, $val)
{
$this->$key = $val;
}
}
| php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Session/SegmentTest.php | tests/Session/SegmentTest.php | <?php
namespace Aura\Auth\Session;
class SegmentTest extends \PHPUnit\Framework\TestCase
{
protected $segment;
public function setUp() : void
{
$this->segment = new Segment(__CLASS__);
}
public function testWithoutSession()
{
$this->segment->set('foo', 'bar');
$this->a... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Session/NullSegmentTest.php | tests/Session/NullSegmentTest.php | <?php
namespace Aura\Auth\Session;
class NullSegmentTest extends \PHPUnit\Framework\TestCase
{
protected $segment;
public function setUp() : void
{
$this->segment = new NullSegment;
}
public function test()
{
$this->assertNull($this->segment->get('foo'));
$this->segmen... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Service/LogoutServiceTest.php | tests/Service/LogoutServiceTest.php | <?php
namespace Aura\Auth\Service;
use Aura\Auth\Adapter\FakeAdapter;
use Aura\Auth\Session\FakeSession;
use Aura\Auth\Session\FakeSegment;
use Aura\Auth\Session\Timer;
use Aura\Auth\Auth;
use Aura\Auth\Status;
class LogoutServiceTest extends \PHPUnit\Framework\TestCase
{
protected $session;
protected $segme... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Service/ResumeServiceTest.php | tests/Service/ResumeServiceTest.php | <?php
namespace Aura\Auth\Service;
use Aura\Auth\Adapter\FakeAdapter;
use Aura\Auth\Session\FakeSession;
use Aura\Auth\Session\FakeSegment;
use Aura\Auth\Session\Timer;
use Aura\Auth\Auth;
use Aura\Auth\Status;
class ResumeServiceTest extends \PHPUnit\Framework\TestCase
{
protected $segment;
protected $adapt... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/tests/Service/LoginServiceTest.php | tests/Service/LoginServiceTest.php | <?php
namespace Aura\Auth\Service;
use Aura\Auth\Adapter\FakeAdapter;
use Aura\Auth\Session\FakeSession;
use Aura\Auth\Session\FakeSegment;
use Aura\Auth\Session\Timer;
use Aura\Auth\Auth;
use Aura\Auth\Status;
class LoginServiceTest extends \PHPUnit\Framework\TestCase
{
protected $segment;
protected $sessio... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
auraphp/Aura.Auth | https://github.com/auraphp/Aura.Auth/blob/c88b713960c3a9f4449d264bd3de440719c086e9/config/Common.php | config/Common.php | <?php
/**
*
* This file is part of Aura for PHP.
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
*/
namespace Aura\Auth\_Config;
use Aura\Di\Config;
use Aura\Di\Container;
/**
*
* Common configuration.
*
* @package Aura.Auth
*
*/
class Common extends Config
{
public function define(C... | php | BSD-2-Clause | c88b713960c3a9f4449d264bd3de440719c086e9 | 2026-01-05T05:09:30.862573Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Consumer.php | src/Consumer.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* Co... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/AbstractConsumer.php | src/AbstractConsumer.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
use Psr\L... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/DefaultProducer.php | src/DefaultProducer.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* Th... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/RetrySpec.php | src/RetrySpec.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* So... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/QueueException.php | src/QueueException.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* A ... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/MessageNames.php | src/MessageNames.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
trait Mes... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/DefaultConsumer.php | src/DefaultConsumer.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
use Guzzl... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/MessageLifecycle.php | src/MessageLifecycle.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* Pr... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Envelope.php | src/Envelope.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* En... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Router.php | src/Router.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* Ro... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/MessageHandler.php | src/MessageHandler.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
use Guzzl... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Producer.php | src/Producer.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* Pr... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/DefaultEnvelope.php | src/DefaultEnvelope.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
use PMG\Q... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Message.php | src/Message.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* A ... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/SimpleMessage.php | src/SimpleMessage.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* A ... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Driver.php | src/Driver.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue;
/**
* De... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Otel/PmgQueueInstrumentation.php | src/Otel/PmgQueueInstrumentation.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Otel;
use ... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Otel/_register.php | src/Otel/_register.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
use PMG\Queue\Otel\PmgQueueInst... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Driver/AbstractPersistanceDriver.php | src/Driver/AbstractPersistanceDriver.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Driver;
us... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Driver/MemoryDriver.php | src/Driver/MemoryDriver.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Driver;
us... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Signer/HmacSha256.php | src/Signer/HmacSha256.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Signer;
us... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Signer/SodiumCryptoAuth.php | src/Signer/SodiumCryptoAuth.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Signer;
us... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Signer/Signer.php | src/Signer/Signer.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Signer;
/*... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Lifecycle/NullLifecycle.php | src/Lifecycle/NullLifecycle.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Lifecycle;
... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Lifecycle/DelegatingLifecycle.php | src/Lifecycle/DelegatingLifecycle.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Lifecycle;
... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Lifecycle/MappingLifecycle.php | src/Lifecycle/MappingLifecycle.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Lifecycle;
... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Serializer/NativeSerializer.php | src/Serializer/NativeSerializer.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Serializer;... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Serializer/Serializer.php | src/Serializer/Serializer.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Serializer;... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Router/SimpleRouter.php | src/Router/SimpleRouter.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Router;
us... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Router/FallbackRouter.php | src/Router/FallbackRouter.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Router;
us... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Router/MappingRouter.php | src/Router/MappingRouter.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Router;
us... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Retry/LimitedSpec.php | src/Retry/LimitedSpec.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Retry;
use... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Retry/NeverSpec.php | src/Retry/NeverSpec.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Retry;
use... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Handler/PcntlForkingHandler.php | src/Handler/PcntlForkingHandler.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Handler;
u... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
AgencyPMG/Queue | https://github.com/AgencyPMG/Queue/blob/7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f/src/Handler/CallableHandler.php | src/Handler/CallableHandler.php | <?php declare(strict_types=1);
/**
* This file is part of PMG\Queue
*
* Copyright (c) PMG <https://www.pmg.com>
*
* For full copyright information see the LICENSE file distributed
* with this source code.
*
* @license http://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace PMG\Queue\Handler;
u... | php | Apache-2.0 | 7dd5f22268a8fbfb4ba50fca4f839f0ce4d1476f | 2026-01-05T05:09:50.528684Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.