-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.53 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.53 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
{
"name": "php-enspired/at_shared_exceptable",
"description": "Shared implementation for `at/exceptable` and `at/peekaboo`. This package SHOULD NOT be a direct dependency for other projects.",
"type": "internal-library",
"homepage": "https://php.enspi.red",
"license": "proprietary",
"authors": [
{
"name": "Adrian",
"email": "adrian@enspi.red",
"homepage": "https://enspi.red"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.3",
"psr/log": "^3"
},
"suggest": {
"ext-intl": "support for localization and full ICU message formatting features"
},
"require-dev": {
"phan/phan": "^5.4.3",
"phpunit/phpunit": "^10"
},
"provide": {
"php-enspired/exceptable": "6.0",
"php-enspired/peekaboo": "2.0"
},
"conflict": {
"php-enspired/exceptable": "<6.0 || >6.0",
"php-enspired/peekaboo": "<2.0 || >2.0"
},
"autoload": {
"psr-4": {
"at\\exceptable\\": "exceptable/src/",
"at\\exceptable\\tests\\": "exceptable/tests/",
"at\\peekaboo\\": "peekaboo/src/",
"at\\peekaboo\\tests\\": "peekaboo/tests/"
}
},
"scripts": {
"build:messages": "genrb exceptable/resources/language/*.txt -d exceptable/resources/language/ && genrb peekaboo/resources/language/*.txt -d peekaboo/resources/language",
"test:analyze": "vendor/bin/phan",
"test:unit" : "vendor/bin/phpunit --testsuite all",
"exceptable:test:unit" : "vendor/bin/phpunit --testsuite exceptable",
"peekaboo:test:unit" : "vendor/bin/phpunit --testsuite peekaboo"
}
}