mirror of
https://codeberg.org/vlw/php-mysql.git
synced 2025-09-13 16:23:42 +02:00
wip: 2024-09-13T10:28:40+0200 (1726216120)
This commit is contained in:
parent
adc2fda90a
commit
88f2de4bcf
3 changed files with 8 additions and 8 deletions
|
@ -1,18 +1,18 @@
|
|||
{
|
||||
"name": "victorwesterlund/libmysqldriver",
|
||||
"description": "Abstraction library for common mysqli features",
|
||||
"name": "vlw/mysql",
|
||||
"description": "Abstraction library for common MySQL/MariaDB DML operations with php-mysqli",
|
||||
"type": "library",
|
||||
"license": "GPL-3.0-only",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Victor Westerlund",
|
||||
"email": "victor.vesterlund@gmail.com"
|
||||
"email": "victor@vlw.se"
|
||||
}
|
||||
],
|
||||
"minimum-stability": "dev",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"libmysqldriver\\": "src/"
|
||||
"vlw\\MySQL\\": "src/"
|
||||
}
|
||||
},
|
||||
"require": {}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace libmysqldriver;
|
||||
namespace vlw\MySQL;
|
||||
|
||||
use Exception;
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
|||
use mysqli_stmt;
|
||||
use mysqli_result;
|
||||
|
||||
use libmysqldriver\Operators;
|
||||
use vlw\MySQL\Operators;
|
||||
|
||||
require_once "Operators.php";
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace libmysqldriver;
|
||||
namespace vlw\MySQL;
|
||||
|
||||
enum Operators: string {
|
||||
// Logical
|
||||
|
|
Loading…
Add table
Reference in a new issue