Skip to content

Commit 402194b

Browse files
committed
Merge branch 'newmaster' into v4
2 parents a92deb7 + e8bcee6 commit 402194b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+12047
-0
lines changed

.gitattributes

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/.gitattributes export-ignore
2+
/.gitignore export-ignore
3+
/.travis.yml export-ignore
4+
/.appveyor.yml export-ignore
5+
/.travis.yml export-ignore
6+
/codecov.yml export-ignore
7+
/examples export-ignore
8+
/phpunit.xml.dist export-ignore
9+
/tests export-ignore
10+
/docs export-ignore
11+
/tmp export-ignore

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/nbproject/private/
2+
/nbproject/
3+
*.lock
4+
clover.xml
5+
*.sqlite
6+
*.sqlite3
7+
vendor
8+
build/
9+
tests/pdo/ez_test.sqlite
10+
tests/sqlite/ez_test.sqlite
11+
tests/sqlite/ez_test.sqlite3
12+
.DS_Store
13+
test.php
14+
*.csr
15+
*.key
16+
*.crt
17+
*.cache
18+
tmp

.travis.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
language: php
2+
3+
# Versions of PHP you want your project run with.
4+
php:
5+
- 7.0
6+
- 7.1
7+
- 7.2
8+
- 7.3
9+
10+
env:
11+
- MYSQL_HOST=127.0.0.1 MYSQL_USER=root
12+
13+
services:
14+
- mysql
15+
- postgresql
16+
17+
# Commands to be run before your environment runs.
18+
before_script:
19+
- composer self-update
20+
- composer require php-coveralls/php-coveralls
21+
- mysql -e 'CREATE DATABASE IF NOT EXISTS ez_test;'
22+
- mysql -e 'GRANT ALL PRIVILEGES ON ez_test.* TO ez_test@localhost;'
23+
- mysql -e "SET PASSWORD FOR 'ez_test'@'localhost' = PASSWORD('ezTest')"
24+
- psql -c 'CREATE DATABASE ez_test;' -U postgres
25+
- psql -c "CREATE USER ez_test WITH PASSWORD 'ezTest';" -U postgres
26+
27+
after_success:
28+
- bash <(curl -s https://codecov.io/bash)
29+
30+
# Commands you want to run that will verify your build.
31+
script:
32+
- phpunit --coverage-clover=coverage.xml
33+
34+
# allow_failures: Allow this build to fail under the specified environments.
35+
# fast_finish: If your build fails do not continue trying to build, just stop.
36+
matrix:
37+
allow_failures:
38+
- php: 7.0
39+
- php: 7.3
40+

.vscode/settings.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"cSpell.words": [
3+
"AUTOINCREMENT",
4+
"BIGINT",
5+
"LONGTEXT",
6+
"MEDIUMBLOB",
7+
"MEDIUMINT",
8+
"MEDIUMTEXT",
9+
"NCHAR",
10+
"NTEXT",
11+
"NVAR",
12+
"NVARCHAR",
13+
"Postgres",
14+
"SMALLINT",
15+
"TINYBLOB",
16+
"TINYINT",
17+
"TINYTEXT",
18+
"VARBINARY",
19+
"VARBIT",
20+
"VARCHAR",
21+
"autoload",
22+
"codecov",
23+
"ezmysqli",
24+
"ezpdo",
25+
"ezpgsql",
26+
"ezsql",
27+
"ezsqlite",
28+
"ezsqlsvr",
29+
"filebase",
30+
"isfile",
31+
"mysqli",
32+
"pgsql",
33+
"postgresql",
34+
"repo",
35+
"sqlserver",
36+
"sqlsrv",
37+
"tomssql",
38+
"tosql",
39+
"zerofill"
40+
]
41+
}

0 commit comments

Comments
 (0)