-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.2 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "php-enspired/storable",
"description": "Components for designing and encapsulating Storage functionality for Domain objects.",
"type": "library",
"homepage": "http://php.enspi.red",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Adrian",
"email": "adrian@enspi.red",
"homepage": "http://enspi.red"
}
],
"support": {
"irc": "irc://irc.freenode.net/php-enspired"
},
"require": {
"php": "^7.4||^8",
"php-enspired/exceptable": "^3"
},
"suggest": {
"ext-intl": "Adds support for localization and ICU message formatting."
},
"require-dev": {
"phan/phan": "^3",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"AT\\Exceptable\\": "src/",
"AT\\Exceptable\\Tests\\": "tests/"
}
},
"scripts": {
"build:dist": "bin/build-dist",
"build:locales": "genrb resources/language/*.txt -d resources/language/",
"build:test": "bin/build-test",
"test:phan": "vendor/bin/phan",
"test:unit" : "vendor/bin/phpunit tests",
"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'"
}
}