-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (38 loc) · 1.39 KB
/
composer.json
File metadata and controls
39 lines (38 loc) · 1.39 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
{
"name": "php-enspired/exceptable",
"description": "Augmented features for exceptions and exception handling.",
"type": "library",
"homepage": "https://php.enspi.red",
"license": "MPL-2.0",
"authors": [
{
"name": "Adrian",
"email": "adrian@enspi.red",
"homepage": "https://enspi.red"
}
],
"support": {
"email": "exceptable@php.enspi.red",
"irc": "irc://irc.libera.chat/php-enspired",
"chat": "https://web.libera.chat/#php-enspired",
"source": "https://github.com/php-enspired/exceptable"
},
"require": {
"php": "^8.3",
"php-enspired/peekaboo": "2.0",
"php-enspired/at_shared_exceptable": "1.0"
},
"suggest": {
"ext-intl": "support for localization and full ICU message formatting features"
},
"require-dev": {
"phan/phan": "^5.4.6",
"phpunit/phpunit": "^12"
},
"scripts": {
"test:analyze": "composer -q --working-dir vendor/php-enspired/at_shared_exceptable install && composer --working-dir vendor/php-enspired/at_shared_exceptable test:analyze",
"test:unit": "composer -q --working-dir vendor/php-enspired/at_shared_exceptable install && composer --working-dir vendor/php-enspired/at_shared_exceptable exceptable:test:unit",
"wiki:update": "git subtree push --prefix docs wiki master",
"wiki:update-docs": "git subtree pull --prefix docs wiki master --squash --message='Merge wiki updates into docs'"
}
}