-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.15 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "gigascience/ro-crate-php",
"description": "Developer tools to manipulate ro-crate metadata files as objects",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Alex",
"email": "wltsangac@connect.ust.hk"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Json\\": "src/Json/",
"Exceptions\\": "src/exceptions/",
"ROCrate\\": "src/rocrate/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"monolog/monolog": "^3.0",
"easyrdf/easyrdf": "^1.1",
"guzzlehttp/guzzle": "^7.0"
},
"config": {
"vendor-dir": "vendor",
"sort-packages": true,
"platform": {
"php": "8.2"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
}
}