-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.61 KB
/
Copy pathcomposer.json
File metadata and controls
91 lines (91 loc) · 2.61 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "argora/loom",
"description": "Loom – unified control panel for managing domains, DNS zones, servers, and resellers",
"type": "project",
"keywords": [
"php",
"slim",
"slim 4",
"boilerplate",
"skeleton",
"starter",
"framework",
"saas",
"admin panel",
"control panel",
"authentication",
"twig",
"template",
"orm"
],
"homepage": "https://github.com/getargora/loom",
"license": "MIT",
"authors": [
{
"name": "Namingo Team",
"email": "help@namingo.org"
}
],
"require": {
"php": "^8.3",
"ext-pdo": "*",
"slim/slim": "4.15.2",
"slim/twig-view": "^3.4.1",
"monolog/monolog": "^3.9.0",
"respect/validation": "^2.4.4",
"slim/csrf": "^1.5",
"slim/flash": "^0.4",
"vlucas/phpdotenv": "^5.6.2",
"php-di/php-di": "^7.0.11",
"nyholm/psr7": "^1.8.2",
"nyholm/psr7-server": "^1.1.0",
"pinga/auth": "^1.0.0",
"phpmailer/phpmailer": "^6.9.1",
"filp/whoops": "^2.18.3",
"gettext/gettext": "^5.7.3",
"punic/punic": "^3.8.1",
"ramsey/uuid": "^4.9",
"giggsey/libphonenumber-for-php-lite": "^8.13.36",
"bjeavons/zxcvbn-php": "^1.4.2",
"mevdschee/php-crud-api": "^2.14.30",
"robthree/twofactorauth": "^3.0.2",
"lbuchs/webauthn": "^2.2",
"bacon/bacon-qr-code": "^3.0.1",
"utopia-php/messaging": "^0.20.0",
"filips123/monolog-phpmailer": "^2.0",
"mpociot/vat-calculator": "^3.23.0",
"guzzlehttp/guzzle": "^7.9.3",
"league/iso3166": "^4.3.3",
"stripe/stripe-php": "^19.0.0",
"adyen/php-api-library": "^28.1",
"argora/tabler-assets": "^1.4",
"pinga/tembo": "^1.1.21",
"utopia-php/domains": "^0.8.0",
"egulias/email-validator": "^4.0",
"brick/postcode": "^0.5.0",
"liqpay/liqpay": "^1.4"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"scripts": {
"post-install-cmd": [
"@copy-tabler",
"@utopia-domains-import"
],
"post-update-cmd": [
"@copy-tabler",
"@utopia-domains-import"
],
"copy-tabler": [
"cp -r vendor/argora/tabler-assets/public/* public/assets/"
],
"utopia-domains-import": "php vendor/utopia-php/domains/data/import.php"
},
"support": {
"issues": "https://github.com/getargora/loom/issues",
"source": "https://github.com/getargora/loom"
}
}