Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksagona committed Nov 29, 2024
1 parent 0c5992e commit 80f25fa
Show file tree
Hide file tree
Showing 96 changed files with 98 additions and 97 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

services:
mysql:
image: mysql:5.7
image: mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: test_popdb
Expand All @@ -46,6 +46,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mysqli, pgsql, sqlite3, pdo

- name: Cache Composer packages
id: composer-cache
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Install `pop-db` using Composer.
Or, require it in your composer.json file

"require": {
"popphp/pop-db" : "^6.0.0"
"popphp/pop-db" : "^6.6.0"
}

[Top](#pop-db)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"require": {
"php": ">=8.2.0",
"popphp/pop-debug": "^2.2.0",
"popphp/pop-utils": "^2.1.2"
"popphp/pop-utils": "^2.1.3"
},
"require-dev": {
"phpunit/phpunit": "^11.0.0"
Expand All @@ -53,7 +53,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "6.5.x-dev"
"dev-master": "6.6.x-dev"
}
}
}
2 changes: 1 addition & 1 deletion src/Adapter/AbstractAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
abstract class AbstractAdapter implements AdapterInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/AdapterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
interface AdapterInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Adapter/Mysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Mysql extends AbstractAdapter
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Pdo.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Pdo extends AbstractAdapter
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Pgsql.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Pgsql extends AbstractAdapter
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Profiler/AbstractProfiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
abstract class AbstractProfiler implements ProfilerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Profiler/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Adapter/Profiler/Profiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Profiler extends AbstractProfiler
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Profiler/ProfilerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
interface ProfilerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Profiler/Step.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Step extends AbstractProfiler
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Sqlite.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Sqlite extends AbstractAdapter
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Sqlsrv.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Sqlsrv extends AbstractAdapter
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Transaction/AbstractManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author Martok <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
abstract class AbstractManager implements ManagerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Transaction/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
* @author Martok <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Adapter/Transaction/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Martok <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Manager extends AbstractManager
{
Expand Down
2 changes: 1 addition & 1 deletion src/Adapter/Transaction/ManagerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author Martok <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
interface ManagerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Db.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Db
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Gateway/AbstractGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
abstract class AbstractGateway implements GatewayInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Gateway/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Gateway/GatewayInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
interface GatewayInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Gateway/Row.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Row extends AbstractGateway implements \ArrayAccess, \Countable, \IteratorAggregate
{
Expand Down
2 changes: 1 addition & 1 deletion src/Gateway/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Table extends AbstractGateway implements \Countable, \IteratorAggregate
{
Expand Down
2 changes: 1 addition & 1 deletion src/Record.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
* @method static findWhereEquals($column, $value, array $options = null, bool|array $toArray = false)
* @method static findWhereNotEquals($column, $value, array $options = null, bool|array $toArray = false)
* @method static findWhereGreaterThan($column, $value, array $options = null, bool|array $toArray = false)
Expand Down
2 changes: 1 addition & 1 deletion src/Record/AbstractRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
abstract class AbstractRecord implements \ArrayAccess, \Countable, \IteratorAggregate
{
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Collection extends Utils\Collection
{
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Encoded.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Encoded extends \Pop\Db\Record
{
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Record/Relationships/AbstractRelationship.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
abstract class AbstractRelationship implements RelationshipInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Relationships/BelongsTo.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class BelongsTo extends AbstractRelationship
{
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Relationships/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Record/Relationships/HasMany.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class HasMany extends AbstractRelationship
{
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Relationships/HasOne.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class HasOne extends AbstractRelationship
{
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Relationships/HasOneOf.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class HasOneOf extends AbstractRelationship
{
Expand Down
2 changes: 1 addition & 1 deletion src/Record/Relationships/RelationshipInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
interface RelationshipInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
class Sql extends AbstractSql
{
Expand Down
2 changes: 1 addition & 1 deletion src/Sql/AbstractClause.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
abstract class AbstractClause extends AbstractSql
{
Expand Down
2 changes: 1 addition & 1 deletion src/Sql/AbstractPredicateClause.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
* @property $where mixed
*/
abstract class AbstractPredicateClause extends AbstractClause
Expand Down
2 changes: 1 addition & 1 deletion src/Sql/AbstractSql.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 6.5.0
* @version 6.6.0
*/
abstract class AbstractSql
{
Expand Down
Loading

0 comments on commit 80f25fa

Please sign in to comment.