-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
69 lines (69 loc) · 1.59 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "whikloj/bagittools",
"description": "A PHP library to manipulate and verify BagIt bags.",
"type": "library",
"keywords": ["bagit", "bags", "data", "integrity", "transmission"],
"homepage": "https://github.com/whikloj/bagittools",
"license": "MIT",
"authors": [
{
"name": "Jared Whiklo",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"pear/archive_tar": "^1.4.14",
"php": ">=8.0",
"ext-curl": "*",
"ext-zip": "*",
"ext-mbstring": "*",
"ext-intl": "*",
"symfony/console": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.5",
"donatj/mock-webserver": "^2.6",
"phpstan/phpstan": "^1.4"
},
"autoload": {
"psr-4": {
"whikloj\\BagItTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"whikloj\\BagItTools\\Test\\": "tests/"
}
},
"scripts": {
"phpstan": [
"php -d memory_limit=-1 ./vendor/bin/phpstan analyze -l 7 src tests"
],
"profile": [
"php -d xdebug.mode=profile -d xdebug.output_dir=mytracedir/ -d xdebug.start_with_request=yes -d xdebug.use_compression=true ./vendor/bin/phpunit"
],
"check": [
"./vendor/bin/phpcs --standard=PSR12 src tests"
],
"phpunit": [
"phpdbg -qrr ./vendor/bin/phpunit -d memory_limit=-1 --verbose --testsuite BagIt"
],
"test": [
"@check",
"@phpunit",
"@phpstan"
]
},
"config": {
"allow-plugins": {
"symfony/flex": false
}
},
"extra": {
"symfony": {
"allow-contrib": false
}
}
}