forked from FormHandler/FormHandler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.53 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
53
54
55
56
{
"name": "tomdabrain/formhandler",
"type": "library",
"description": "Interactive forms within 10 lines",
"homepage": "http://www.formhandler.net/",
"license": "LGPL-2.1-only",
"support": {
"forum": "http://www.formhandler.net/forum_index.html",
"docs": "http://www.formhandler.net/manual/manual.html",
"issues": "https://github.com/FormHandler/FormHandler/issues"
},
"authors": [
{
"name": "Marien den Besten",
"homepage": "http://www.formhandler.net/",
"role": "Project lead"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/tombrain/phpunit-mock-dibi.git"
}
],
"require": {
"phpunit/phpunit": "^9.0.1",
"czukowski/phpunit-mock-db": "^9.0",
"jdorn/sql-formatter": "^1.2.17",
"phan/phan": "^5.1",
"phpstan/phpstan": "^1.9.2",
"tombrain/phpunit-mock-dibi" : "dev-master",
"dibi/dibi": "^4.2"
},
"autoload": {
"files": [
"src/class.FormHandler.php",
"src/class.dbFormHandler.php",
"src/yadal/class.Yadal.php",
"src/includes/class.ImageConverter.php"
],
"psr-4": {
"Cz\\PHPUnit\\MockDibi\\": "vendor\\tombrain\\phpunit-mock-dibi\\classes"
}
},
"autoload-dev": {
"classmap": [
"tests/uts/helper"
]
},
"extra": {
"dev-master": "v3.3.x-dev"
},
"config": {
"platform-check": false
}
}