-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
76 lines (75 loc) · 1.71 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "gtk/gtk-data-access",
"description": "Functional ORM",
"type": "project",
"license": "Private",
"authors": [
{
"name": "Gustavo Tavares",
"email": "[email protected]"
}
],
"toConsider": {
"composer": [
"composer suggest --all"
],
"homebrew": [
"brew unlink php",
"brew unlink [email protected]"
],
"ramsey/uuid": "5.x-dev"
},
"platform": {
"php": "8.2"
},
"minimum-stability": "stable",
"repositoriesFossil": [
{
"type": "path",
"url": "../gtk-helpers"
},
{
"type": "path",
"url": "../gtk-helpers"
},
{
"type": "vcs",
"url": "https://fossil.palo.do/gtk-helpers"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mucholove/gtk-helpers"
}
],
"require": {
"php": "^8.1",
"phpmailer/phpmailer": "6.9.1",
"gtk/gtk-helpers": "dev-main"
},
"autloadFilesComment": [
"Files in `files` are loaded in the order listed"
],
"autoloadMaybe": {
"files": [
"src/startup.php"
]
},
"autoload": {
"files": [
"configure/databases.php",
"configure/functions/HasPermission.php",
"configure/functions/www-Debug.php",
"configure/lang.php",
"configure/permissions.php",
"configure/pages.php"
],
"classmap": [
"src/"
]
},
"require-dev": {
"phpunit/phpunit": "^11.0"
}
}