-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.01 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.01 KB
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
{
"name": "setbased/php-stratum",
"description": "PhpStratum: A stored procedure and function loader and wrapper generator for various RDBMS",
"keywords": [
"PhpStratum",
"Stored Routines",
"Stored Procedures",
"Stored Functions",
"Loader",
"Wrapper"
],
"license": "MIT",
"require": {
"php": ">=8.3",
"hassankhan/config": "^3.2.0",
"setbased/error-handler": "^1.4.0",
"setbased/helper-cast": "^3.1.0",
"setbased/php-stratum-backend": "^6.3.1",
"symfony/console": "^6.0|^7.0"
},
"require-dev": {
"phing/phing": "^3.0.1",
"phpunit/phpunit": "^11.5.22",
"setbased/phing-extensions": "^3.3.0"
},
"autoload": {
"psr-4": {
"SetBased\\Stratum\\Frontend\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SetBased\\Stratum\\Frontend\\Test\\": "test/"
}
},
"bin": [
"bin/stratum"
],
"config": {
"bin-dir": "bin/",
"sort-packages": true,
"allow-plugins": {
"phing/phing-composer-configurator": true
}
}
}