-
Notifications
You must be signed in to change notification settings - Fork 127
/
composer.json
37 lines (37 loc) · 1.17 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
{
"name": "artefactual/accesstomemory",
"type": "project",
"description": "A web-based, open source application for standards-based archival description.",
"keywords": [
"archives",
"archival-description"
],
"license": "AGPL-3.0-only",
"config": {
"vendor-dir": "vendor/composer"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.5",
"phing/phing": "2.*",
"friendsofphp/php-cs-fixer": "^3.0"
},
"require": {
"league/csv": "^9.4",
"apereo/phpcas": "^1.3.8",
"ezyang/htmlpurifier": "^4.13",
"ruflin/elastica": "5.*",
"jumbojett/openid-connect-php": "^1.0"
},
"autoload-dev": {
"psr-4": {
"AccessToMemory\\test\\": "test/"
}
},
"scripts": {
"test": "phpunit",
"test-cov": "@php -dpcov.enabled=1 -dpcov.directory=. ./vendor/composer/bin/phpunit --coverage-html=.coverage/html",
"test-cov-strict": "@php -dpcov.enabled=1 -dpcov.directory=. ./vendor/composer/bin/phpunit --coverage-html=.coverage/html --strict-coverage",
"php-cs-fixer": "php-cs-fixer"
}
}