forked from DatabaseFactory/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 903 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "database-factory/framework",
"description": "A zero dependency, stand-alone, PDO based query builder and ORM for interactive PHP applications.",
"keywords": ["database", "factory", "library", "php", "pdo", "orm", "mysql", "mssql", "sqlsrv", "dblib"],
"type": "library",
"license": "MIT",
"version": "0.0.1",
"require": {
"ext-pdo": "*",
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3"
},
"scripts": {
"docs": "php ./docs/phpDocumentor.phar -d ./src -t docs/api",
"test": "vendor/bin/phpunit ./tests --testdox",
"fix:tests": "phpcbf --standard=PSR12 ./tests",
"fix": "phpcbf --standard=PSR12 ./src"
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"files": [ "src/Helper.php" ],
"psr-4": {
"DatabaseFactory\\": "src",
"Tests\\": "tests"
}
}
}