Skip to content
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Commit 56fe6cb

Browse files
committed
The repository was updated to version 1.1.1
1 parent eddab7c commit 56fe6cb

15 files changed

+3488
-0
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_size = 4
6+
indent_style = space
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
phpunit.xml
2+
composer.phar
3+
composer.lock
4+
composer-test.lock
5+
vendor/
6+
build/artifacts/
7+
artifacts/
8+
docs/_build
9+
docs/*.pyc
10+
.git*/
11+
.idea
12+
.DS_STORE

CHANGELOG.md

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# CHANGELOG
2+
3+
## 1.1.1 - 2017-03-18
4+
* Some files were excluded from download and comments and readme files were updated.
5+
6+
## 1.1.0 - 2017-01-30
7+
* Compatible with PHP 5.6 or higher.
8+
9+
## 1.0.0 - 2017-01-30
10+
* Compatible only with PHP 7.0 or higher. In the next versions, the library will be modified to make it compatible with PHP 5.6 or higher.
11+
12+
## 1.0.0 - 2017-01-09
13+
* Added `Josantonius\Database\Database` class.
14+
* Added `Josantonius\Database\Database->__connstruct()` method.
15+
* Added `Josantonius\Database\Database::getConnection()` method.
16+
* Added `Josantonius\Database\Database->query()` method.
17+
* Added `Josantonius\Database\Database->_implement()` method.
18+
* Added `Josantonius\Database\Database->_implementPrepareStatements()` method.
19+
* Added `Josantonius\Database\Database->_implementQuery()` method.
20+
* Added `Josantonius\Database\Database->create()` method.
21+
* Added `Josantonius\Database\Database->select()` method.
22+
* Added `Josantonius\Database\Database->insert()` method.
23+
* Added `Josantonius\Database\Database->update()` method.
24+
* Added `Josantonius\Database\Database->replace()` method.
25+
* Added `Josantonius\Database\Database->delete()` method.
26+
* Added `Josantonius\Database\Database->truncate()` method.
27+
* Added `Josantonius\Database\Database->drop()` method.
28+
* Added `Josantonius\Database\Database->in()` method.
29+
* Added `Josantonius\Database\Database->table()` method.
30+
* Added `Josantonius\Database\Database->from()` method.
31+
* Added `Josantonius\Database\Database->where()` method.
32+
* Added `Josantonius\Database\Database->order()` method.
33+
* Added `Josantonius\Database\Database->limit()` method.
34+
* Added `Josantonius\Database\Database->_reset()` method.
35+
* Added `Josantonius\Database\Database->execute()` method.
36+
* Added `Josantonius\Database\Database->_getResponse()` method.
37+
* Added `Josantonius\Database\Database->_fetchResponse()` method.
38+
* Added `Josantonius\Database\Database->__destruct()` method.
39+
40+
## 1.0.0 - 2017-01-09
41+
* Added `Josantonius\Database\Exception\DatabaseException` class.
42+
* Added `Josantonius\Database\Exception\Exceptions` abstract class.
43+
* Added `Josantonius\Database\Exception\DatabaseException->__construct()` method.
44+
45+
## 1.0.0 - 2017-01-09
46+
* Added `Josantonius\Provider\Provider` class.
47+
* Added `Josantonius\Provider\Provider->connect()` method.
48+
* Added `Josantonius\Provider\Provider->query()` method.
49+
* Added `Josantonius\Provider\Provider->statements()` method.
50+
* Added `Josantonius\Provider\Provider->create()` method.
51+
* Added `Josantonius\Provider\Provider->select()` method.
52+
* Added `Josantonius\Provider\Provider->insert()` method.
53+
* Added `Josantonius\Provider\Provider->update()` method.
54+
* Added `Josantonius\Provider\Provider->delete()` method.
55+
* Added `Josantonius\Provider\Provider->truncate()` method.
56+
* Added `Josantonius\Provider\Provider->drop()` method.
57+
* Added `Josantonius\Provider\Provider->fetchResponse()` method.
58+
* Added `Josantonius\Provider\Provider->lastInsertId()` method.
59+
* Added `Josantonius\Provider\Provider->rowCount()` method.
60+
* Added `Josantonius\Provider\Provider->getError()` method.
61+
* Added `Josantonius\Provider\Provider->isConnected()` method.
62+
* Added `Josantonius\Provider\Provider->kill()` method.
63+
64+
## 1.0.0 - 2017-01-09
65+
* Added `Josantonius\Provider\PDOprovider` class.
66+
* Added `Josantonius\Provider\PDOprovider->connect()` method.
67+
* Added `Josantonius\Provider\PDOprovider->query()` method.
68+
* Added `Josantonius\Provider\PDOprovider->statements()` method.
69+
* Added `Josantonius\Provider\PDOprovider->create()` method.
70+
* Added `Josantonius\Provider\PDOprovider->select()` method.
71+
* Added `Josantonius\Provider\PDOprovider->insert()` method.
72+
* Added `Josantonius\Provider\PDOprovider->update()` method.
73+
* Added `Josantonius\Provider\PDOprovider->delete()` method.
74+
* Added `Josantonius\Provider\PDOprovider->truncate()` method.
75+
* Added `Josantonius\Provider\PDOprovider->drop()` method.
76+
* Added `Josantonius\Provider\PDOprovider->fetchResponse()` method.
77+
* Added `Josantonius\Provider\PDOprovider->lastInsertId()` method.
78+
* Added `Josantonius\Provider\PDOprovider->rowCount()` method.
79+
* Added `Josantonius\Provider\PDOprovider->getError()` method.
80+
* Added `Josantonius\Provider\PDOprovider->isConnected()` method.
81+
* Added `Josantonius\Provider\PDOprovider->kill()` method.
82+
83+
## 1.0.0 - 2017-01-09
84+
* Added `Josantonius\Provider\MSSQLprovider` class.
85+
* Added `Josantonius\Provider\MSSQLprovider->connect()` method.
86+
* Added `Josantonius\Provider\MSSQLprovider->query()` method.
87+
* Added `Josantonius\Provider\MSSQLprovider->statements()` method.
88+
* Added `Josantonius\Provider\MSSQLprovider->create()` method.
89+
* Added `Josantonius\Provider\MSSQLprovider->select()` method.
90+
* Added `Josantonius\Provider\MSSQLprovider->insert()` method.
91+
* Added `Josantonius\Provider\MSSQLprovider->update()` method.
92+
* Added `Josantonius\Provider\MSSQLprovider->delete()` method.
93+
* Added `Josantonius\Provider\MSSQLprovider->truncate()` method.
94+
* Added `Josantonius\Provider\MSSQLprovider->drop()` method.
95+
* Added `Josantonius\Provider\MSSQLprovider->fetchResponse()` method.
96+
* Added `Josantonius\Provider\MSSQLprovider->lastInsertId()` method.
97+
* Added `Josantonius\Provider\MSSQLprovider->rowCount()` method.
98+
* Added `Josantonius\Provider\MSSQLprovider->getError()` method.
99+
* Added `Josantonius\Provider\MSSQLprovider->isConnected()` method.
100+
* Added `Josantonius\Provider\MSSQLprovider->kill()` method.
101+
102+
## 1.0.0 - 2017-01-09
103+
* Added `Josantonius\Database\Tests\DatabaseCreateTest` class.
104+
* Added `Josantonius\Database\Tests\DatabaseDeleteTest` class.
105+
* Added `Josantonius\Database\Tests\DatabaseDropTest` class.
106+
* Added `Josantonius\Database\Tests\DatabaseInsertTest` class.
107+
* Added `Josantonius\Database\Tests\DatabaseReplaceTest` class.
108+
* Added `Josantonius\Database\Tests\DatabaseSelectTest` class.
109+
* Added `Josantonius\Database\Tests\DatabaseTruncateTest` class.
110+
* Added `Josantonius\Database\Tests\DatabaseUpdateTest` class.

CONDUCT.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Contributor Code of Conduct
2+
3+
As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4+
5+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
6+
7+
Examples of unacceptable behavior by participants include:
8+
9+
* The use of sexualized language or imagery
10+
* Personal attacks
11+
* Trolling or insulting/derogatory comments
12+
* Public or private harassment
13+
* Publishing other's private information, such as physical or electronic addresses, without explicit permission
14+
* Other unethical or unprofessional conduct.
15+
16+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
17+
18+
This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community in a direct capacity. Personal views, beliefs and values of individuals do not necessarily reflect those of the organisation or affiliated individuals and organisations.
19+
20+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
21+
22+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/)

0 commit comments

Comments
 (0)