Skip to content

Commit cb0f4d4

Browse files
committed
Merge branch 'master' into v3
1 parent f68720a commit cb0f4d4

14 files changed

+26
-27
lines changed

composer.json

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,43 @@
11
{
22
"name": "jv2222/ezsql",
33
"description": "PHP class to make interacting with a database ridiculously easy.",
4-
"license": "LGPL",
4+
"keywords": ["mysqli","postgres","msserver","pdo","database","abstraction","dba"],
5+
"license": "LGPL-3.0-or-later",
56
"authors": [
67
{
78
"name": "Justin Vincent",
89
"email": "[email protected]"
10+
},
11+
{
12+
"name": "Stefanie Janine Stoelting",
13+
"email": "[email protected]"
14+
},
15+
{
16+
"name": "l. stubbs",
17+
"email": "[email protected]"
18+
}
19+
],
20+
"support": {
21+
"issues": "https://github.com/ezSQL/ezSQL/issues"
22+
},
23+
"repositories": [
24+
{
25+
"type": "vcs",
26+
"url": "https://github.com/ezSQL/ezSQL"
927
}
1028
],
1129
"require": {
12-
"php": ">5.6"
30+
"php": ">5.6",
31+
"jv2222/ezsql": "dev-v3"
1332
},
1433
"autoload": {
15-
"classmap": [
16-
"lib/ez_sql_mysqli.php",
17-
"lib/ez_sql_pdo.php",
18-
"lib/ez_sql_postgresql.php",
19-
"lib/ez_sql_recordset.php",
20-
"lib/ez_sql_sqlite3.php",
21-
"lib/ez_sql_sqlsrv.php",
22-
"shared/ez_sql_core.php",
23-
"shared/ezFunctions.php",
24-
"shared/ezQuery.php"
25-
]
34+
"files": ["ez_sql_loader.php"]
2635
},
2736
"require-dev": {
2837
"phpunit/phpunit": ">5.7.0"
38+
},
39+
"scripts": {
40+
"test": "phpunit --bootstrap vendor/autoload.php tests"
2941
}
3042
}
3143

phpunit.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
convertNoticesToExceptions="true"
88
convertWarningsToExceptions="true"
99
processIsolation="false"
10-
stopOnFailure="false"
11-
syntaxCheck="false" >
10+
stopOnFailure="false" >
1211

1312
<testsuites>
1413
<testsuite name="ezSQL Test Suite">

tests/mysqli/ezSQL_mysqliTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
require_once('ez_sql_loader.php');
32

43
require 'vendor/autoload.php';
54
use PHPUnit\Framework\TestCase;

tests/mysqli/ezSQL_recordsetTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
require_once('ez_sql_loader.php');
32

43
require 'vendor/autoload.php';
54
use PHPUnit\Framework\TestCase;

tests/pdo/ezSQL_pdo_mysqlTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
require_once('ez_sql_loader.php');
32

43
require 'vendor/autoload.php';
54
use PHPUnit\Framework\TestCase;

tests/pdo/ezSQL_pdo_pgsqlTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
require_once('ez_sql_loader.php');
32

43
require 'vendor/autoload.php';
54
use PHPUnit\Framework\TestCase;

tests/pdo/ezSQL_pdo_sqliteTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
require_once('ez_sql_loader.php');
32

43
require 'vendor/autoload.php';
54
use PHPUnit\Framework\TestCase;

tests/pdo/ezSQL_pdo_sqlsrvTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
require_once('ez_sql_loader.php');
32

43
require 'vendor/autoload.php';
54
use PHPUnit\Framework\TestCase;

tests/postgresql/ezSQL_postgresqlTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
require_once('ez_sql_loader.php');
32

43
require 'vendor/autoload.php';
54
use PHPUnit\Framework\TestCase;

tests/shared/ezFunctionsTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
require_once('ez_sql_loader.php');
32

43
require 'vendor/autoload.php';
54
use PHPUnit\Framework\TestCase;

0 commit comments

Comments
 (0)