-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 1.25 KB
/
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
33
34
35
36
37
38
39
40
{
"name": "flightphp/active-record",
"type": "library",
"description": "Micro Active Record library in PHP, support chain calls, events, and relations.",
"keywords": ["active record", "orm", "pdo", "relation", "micro", "database","lite","simple"],
"homepage": "https://docs.flightphp.com",
"license": "MIT",
"authors": [
{
"name": "Lloyd Zhou",
"email": "[email protected]",
"homepage": "https://lloydzhou.github.io/",
"role": "Original Developer"
},
{
"name": "n0nag0n",
"email": "[email protected]",
"role": "Maintainer"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.8",
"rregeer/phpunit-coverage-check": "^0.3.1",
"flightphp/runway": "^0.2.4 || ^1.0"
},
"autoload": {
"psr-4": {"flight\\": "src/"}
},
"scripts": {
"test": "phpunit",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html=coverage --coverage-clover=clover.xml && vendor/bin/coverage-check clover.xml 100",
"beautify": "phpcbf --standard=phpcs.xml",
"phpcs": "phpcs -n --standard=phpcs.xml"
}
}