forked from poweradmin/poweradmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.87 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
{
"name": "poweradmin/poweradmin",
"description": "A web-based control panel for PowerDNS.",
"type": "project",
"homepage": "https://www.poweradmin.org",
"license": "GPL-3.0-or-later",
"support": {
"issues": "https://github.com/poweradmin/poweradmin/issues",
"forum": "https://github.com/poweradmin/poweradmin/discussions",
"wiki": "https://github.com/poweradmin/poweradmin/wiki",
"source": "https://github.com/poweradmin/poweradmin",
"chat": "https://gitter.im/poweradmin/poweradmin"
},
"require": {
"php": ">=8.1",
"ext-intl": "*",
"ext-gettext": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"twig/twig": "^3.17.1",
"vlucas/valitron": "^v1.4.11",
"symfony/twig-bridge": "^v6.4.13",
"symfony/translation": "^v6.4.13",
"twbs/bootstrap": "^v5.3.3",
"twbs/bootstrap-icons": "^v1.11.3",
"symfony/http-foundation": "^6.4.14",
"symfony/validator": "^6.4.14",
"psr/log": "^3.0.2",
"jeremykendall/php-domain-parser": "^6.3.1",
"symfony/config": "^6.4.14",
"symfony/console": "^6.4.15",
"robmorgan/phinx": "^0.16.6",
"symfony/string": "^6.4.15"
},
"suggest": {
"ext-ldap": "For LDAP support"
},
"autoload": {
"psr-4": {
"Poweradmin\\": "lib/",
"PoweradminInstall\\": "install/helpers"
}
},
"require-dev": {
"phpunit/phpunit": "^11.5.2",
"squizlabs/php_codesniffer": "^3.11.2"
},
"scripts": {
"docs": "tools/phpDocumentor",
"tests": "phpunit --testsuite unit",
"tests:integration": "phpunit --testsuite integration",
"check:index": "phpcs --standard=phpcs.xml index.php",
"check:inc": "phpcs --standard=phpcs.xml inc",
"check:install": "phpcs --standard=phpcs.xml install",
"check:lib": "phpcs --standard=phpcs.xml lib",
"check:tests": "phpcs --standard=phpcs.xml tests",
"fix:install": "phpcbf --standard=phpcs.xml install"
}
}