PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Jorge Castro   PHP PDO One   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP PDO One
Access to database with PDO and run common queries
Author: By
Last change: 4.9
4.6.1
4.6
4.3.2
4.2
4.1.2
4.1.1
4.1
4.00
4.0
3.14
* 3.10
* 3.2
* 2.32.1 2022-06-11
* 2.30 2022-02-28
* 2.29 2022-02-19
* 2.28 2022-02-19
* 2.27 2022-02-19
* 2.26 2022-02-19
2.25.1 2022-02-18
2.24 2022-02-06
* 2.23 see README.md for a list of changes
* 2.20 see README.md
* 2.14.1 see README.md
* 2.10
* 2.10.1
* 2.9.4
* 2.9.3
* 2.9.1 2021-02-16 see README.md
* 2.9 2021-02-16 see README.md
* 2.8 2021-02-13 see README.md
* 2.7 2021-01-10 see README.md
* 2.6.3 2020-10-16 see README.md
* 2.6.2 2020-10-09 see README.md
* 2.6.1 2020-09-24 see README.md
* 2.6 2020-09-17
* the methods insert(),update(),delete() and insertObject() flushes the cache if it is called with useCache()
, example: $this->usecache('','customers')->insert(); // delete the group cache customers.
2.5 see README.md
2.4.1 see README.md
2.4 see README.md
2.3 see README.md
2.2.6 see README.md
2.2.5 see README.md
2.2.3 see README.md
2.2.2 see README.md
2.2.1 see README.md
2.2 see README.md
2.0.1
2.0
1.55.1 2020-08-05
1.55 2020-08-05
1.54 2020-08-02
* 1.53

PDO::ATTR_EMULATE_PREPARES=false
* 1.52
* 1.51
* 1.50
* 1.49 2020-6-19
* New method generateAllClasses()
* 1.48 2020-6-15
* dateTextNow() now returns a human readable format
* New method dateNow() that returns a date in a normal format.
* BasePdoOne::count() now works with setRecursive()
* 1.47 2020-6-14
* The flow ->where()->update() now works when "where()" uses named arguments.
* Fixed a bug with the next query ->where('a1=:Argument',[])
* Added the method PdoOneEncryption::hash() and added the method PdoOne::hash() to wrap the first method.
* Added the field PdoOneEncryption:$hashType And PdoOne uses as the default hash algorythm.
* The method RunRawQuery() now accept named arguments.
* 1.46 2020-6-13
* _BasePdoOneRepo updated to 4.6
* Now generation of code has a Base class, so it is possible to rename classes independiently of the table.
* 1.45 2020-6-7
* Added method generateCodeClassRepo()
* Modified method generateCodeClass()
* 1.44.2 2020-6-3
* Solved a problem with BasePdoOneRepo
* 1.44.1 2020-6-2
* Solved a small bug on BasePdoOneRepo
* 1.44 2020-5-31
* Updated BasePdoOneRepo to 4.4. Now it catches errors or returns false.
* 1.43 2020-5-31
* Updated BasePdoOneRepo to 4.3. Now it works with conversions. It doesn't convert fields from **where**
but it converts results, insert and update.
* BasePdoOneRepo 4.3 also restricts the columns to insert and update.
* BasePdoOneRepo 4.3 also uses a long definition of columns.
* 1.42 2020-5-29
* Updated BasePdoOneRepo to 4.2. Now it works with cache
* New method buildUniqueID()
* 1.41.2 2020-5-29
* Updated BasePdoOneRepo to 4.1.1 In the method _first(), if argument is null then it doesn't query the value.
* 1.41.1 2020-5-28
* Added more phpdoc for generateCodeClass()
* 1.41 2020-05-28
* 1.40.1 2020-05-27
* 1.40 2020-05-21
* 1.39 2020-05-12
1.38 2020-05-10 see README.md
* 1.37 2020-05-03
* added method setNoReset()
1.36 2020-05-03

* added method hasRecursive()
* 1.35.1 delete autoload.php
* 1.35 2020-04-28
* _BasePdoOneRepo 2.3 added relation ONETOMANY
* generateCodeClass() supports for _BasePdoOneRepo 2.3
* 1.34.2 2020-04-27
* Updated other components.
* left(), right() and innerjoin() don't replace where() anymore
1.34.1
1.34
1.33
1.32.1
1.32 2020-04-12
1.31.1 see README.md
1.31 2020-04-11

* new method tableSorted()
1.30
1.29
1.28.1
1.28
Date: 8 hours ago
Size: 1,025 bytes
 

 

Contents

Class file image Download
{ "name": "eftec/pdoone", "description": "Minimaist procedural PDO wrapper library", "type": "library", "keywords": [ "php", "pdo", "mysql", "oracle", "sqlserver" ], "homepage": "https://github.com/EFTEC/PdoOne", "authors": [ { "name": "Jorge Castro Castillo", "homepage": "https://github.com/EFTEC/" } ], "license": "MIT", "autoload": { "psr-4": { "eftec\\": "lib/" } }, "autoload-dev": { "psr-4": { "eftec\\tests\\": "tests/", "eftec\\examples\\": "examples/" } }, "require": { "php": ">=7.4", "ext-json": "*", "eftec/clione": "^1.33", "ext-pdo": "*", "ext-readline": "*", "eftec/messagecontainer": "^2.9" }, "bin": [ "lib/pdoonecli" ], "suggest": { "eftec/pdooneorm": "The ORM extension for PdoOne", "eftec/validationone": "For keeping and storing the messages" }, "require-dev": { "phpunit/phpunit": "^8.5.36" } }