Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
69 lines (69 sloc)
1.54 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "ezsql/ezsql", | |
| "description": "Advance database access library. Make interacting with a database ridiculously easy. An universal interchangeable CRUD system.", | |
| "keywords": [ | |
| "crud", | |
| "dba", | |
| "mysql", | |
| "mysqli", | |
| "postgresql", | |
| "mssql", | |
| "sqlsrv", | |
| "sqlserver", | |
| "pdo", | |
| "sqlite", | |
| "sqlite3", | |
| "database", | |
| "abstraction", | |
| "sql" | |
| ], | |
| "license": [ | |
| "LGPL-3.0-or-later", | |
| "MIT" | |
| ], | |
| "authors": [ | |
| { | |
| "name": "Justin Vincent", | |
| "email": "webmaster@justinvincent.com" | |
| }, | |
| { | |
| "name": "Stefanie Janine Stoelting", | |
| "email": "mail@stefanie-stoelting.de" | |
| }, | |
| { | |
| "name": "l. stubbs", | |
| "email": "lstubbs@techno.express" | |
| } | |
| ], | |
| "support": { | |
| "issues": "https://github.com/ezSQL/ezSQL/issues" | |
| }, | |
| "require": { | |
| "php": ">7.1", | |
| "psr/container": "^1.0" | |
| }, | |
| "provide": { | |
| "psr/container-implementation": "1.0" | |
| }, | |
| "autoload": { | |
| "files": [ | |
| "lib/Constants.php", | |
| "lib/ezFunctions.php" | |
| ], | |
| "psr-4": { | |
| "ezsql\\": "lib/" | |
| } | |
| }, | |
| "require-dev": { | |
| "phpunit/phpunit": "^6 | ^7 | ^8" | |
| }, | |
| "autoload-dev": { | |
| "psr-4": { | |
| "ezsql\\Tests\\": "tests/" | |
| } | |
| }, | |
| "scripts": { | |
| "test": "phpunit --bootstrap vendor/autoload.php tests" | |
| }, | |
| "minimum-stability": "stable" | |
| } |