forked from jwiegel/FormHandler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
65 lines (65 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
{
"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"
},
{
"type": "vcs",
"url": "https://github.com/tombrain/phpunit-mock-db.git"
},
{
"type": "vcs",
"url": "https://github.com/tombrain/phpunit-sql.git"
}
],
"require": {
"phpunit/phpunit": "~9.0",
"tombrain/phpunit-mock-dibi": "dev-phpunit-9",
"tombrain/phpunit-mock-db": "dev-phpunit-9",
"tombrain/phpunit-sql": "dev-phpunit-9",
"dibi/dibi": "^4.2.x-dev",
"jdorn/sql-formatter": "^1.2.17",
"phan/phan": "^5.1",
"phpstan/phpstan": "^1.9.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
}
}