PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Lars Moelleken   Simple Active Record   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple Active Record
Store and fetch data with Active Records pattern
Author: By
Last change: [+]: add new "whereEscape()" method

-> use db->escape()
[+]: update vendor libs

-> do less magic
[+]: update vendor libs
[+]: use "CollectionActiveRecord::createFromGeneratorFunction()"
[+]: add support for php 7.0
[+]: add a simple "addRelation()" method + use "hashids/hashids"
Update phpunit/phpunit requirement from ~6.0 to ~6.0 || ~7.0

Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version.
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-7.5.md)
- [Commits](https://github.com/sebastianbergmann/phpunit/commits/7.5.1)

Signed-off-by: dependabot[bot] <[email protected]>
[+]: move from "Simple MySQLi" into this repository
Date: Yesterday
Size: 958 bytes
 

Contents

Class file image Download
{ "name": "voku/simple-active-record", "description": "Simple Active Record", "keywords": [ "php", "active record", "simple db", "DB" ], "type": "library", "homepage": "https://github.com/voku/simple-active-record", "license": "MIT", "authors": [ { "name": "Lars Moelleken", "email": "[email protected]", "homepage": "https://github.com/voku", "role": "Developer" } ], "require": { "php": ">=7.0", "voku/arrayy": "~7.0", "voku/simple-mysqli": "~8.0", "hashids/hashids": "~2.0 || ~3.0 || ~4.0" }, "require-dev": { "phpunit/phpunit": "~6.0 || ~7.0", "doctrine/dbal": "~2.0" }, "autoload": { "psr-4": { "voku\\db\\": "src/voku/db/" } }, "autoload-dev": { "psr-4": { "tests\\": "tests/" } } }