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
|
{
"name": "morris/lessql",
"description": "LessQL: A lightweight and performant PHP ORM alternative",
"keywords": ["orm", "notorm", "sql", "pdo", "database"],
"license": "MIT",
"homepage": "https://github.com/morris/lessql",
"authors": [
{
"name": "Morris Brodersen",
"homepage": "https://morrisbrodersen.de"
}
],
"autoload": {
"psr-4": {
"LessQL\\": "src/LessQL"
}
},
"require": {
"php": ">=5.3.4"
},
"require-dev": {
"phpunit/phpunit": "~4.6|~5|~6|~7",
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"test": "vendor/bin/phpunit --bootstrap=tests/sqlite.php --coverage-html=coverage tests",
"format": "vendor/bin/php-cs-fixer fix ."
}
}
|