-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcomposer.json
52 lines (52 loc) · 1.21 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "tharos/leanmapper",
"description": "Tiny ORM based on powerful Dibi database abstraction library for PHP.",
"homepage": "http://www.leanmapper.com",
"license": "MIT",
"authors": [
{
"name": "Vojtěch Kohout",
"role": "Author"
},
{
"name": "Miroslav Paulík",
"role": "Maintainer"
},
{
"name": "Jan Pecha",
"role": "Maintainer"
}
],
"autoload": {
"psr-0": {
"LeanMapper": "src/"
}
},
"autoload-dev": {
"classmap": ["tests/phpstan/DibiFluentDynamicReturnTypeExtension.php"]
},
"require": {
"php": "7.4 - 8.4",
"dibi/dibi": "^4.0 || ^5.0"
},
"require-dev": {
"nette/bootstrap": "^2.4 || ^3.0",
"nette/caching": "^2.4 || ^3.0",
"nette/di": "^2.4 || ^3.0",
"nette/robot-loader": "^2.4 || ^3.0 || ^4.0",
"tracy/tracy": "^2.4 || ^3.0",
"nette/tester": "^2.3",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"coverage": "tester -C -d zend_extension=xdebug --coverage tests/coverage.html --coverage-src src tests",
"phpstan": "phpstan analyse --configuration phpstan.neon",
"phpstan-baseline": "phpstan analyse --configuration phpstan.neon --generate-baseline",
"tests": "tester -C tests"
},
"extra": {
"branch-alias": {
"dev-develop": "4.1-dev"
}
}
}