-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 888 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
33
34
35
{
"name": "hschletz/nada",
"description": "A high level SQL abstraction library for PHP, complementing and operating on top of a conventional database abstraction layer",
"homepage": "https://github.com/hschletz/NADA",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Holger Schletz",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/hschletz/NADA/issues"
},
"autoload": {
"psr-4": {
"Nada\\": "src/"
}
},
"require": {
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"phpstan": "phpstan",
"psalm": "psalm"
}
}