-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathcomposer.json
57 lines (57 loc) · 1.42 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
{
"name": "php/web-bugs",
"description": "The PHP Bugtracking System",
"type": "project",
"keywords": ["bugs", "php", "website"],
"homepage": "https://bugs.php.net",
"readme": "README.md",
"license": "PHP license",
"authors": [
{
"name": "PHP contributors"
}
],
"support": {
"email": "[email protected]",
"issues": "https://bugs.php.net/",
"wiki": "https://wiki.php.net/",
"irc": "irc://irc.efnet.org/php.pecl",
"source": "https://github.com/php/web-bugs",
"docs": "https://php.net/manual",
"rss": "https://bugs.php.net/rss"
},
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-session": "*"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"phpunit/phpunit": "^8.1.5"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"classmap": ["src/Horde/"]
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts":{
"post-install-cmd": [
"App\\Utils\\ComposerScripts::installConfig",
"App\\Utils\\ComposerScripts::createDirectories"
]
}
}