-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
43 lines (43 loc) · 1.54 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
{
"name": "caseyamcl/phpoaipmh",
"type": "library",
"description": "A PHP OAI-PMH 2.0 Harvester library",
"keywords": ["OAI", "Harvester", "OAI-PMH"],
"homepage": "https://github.com/caseyamcl/phpoaipmh",
"authors": [
{
"name": "Casey McLaughlin",
"email": "caseyamcl@gmail.com",
"homepage": "http://caseymclaughlin.com",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": ">=5.5.0",
"ext-simplexml": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.0|^7.0",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5",
"mockery/mockery": "^0.9",
"symfony/console": "^3.4|^4.3|^5.0",
"symfony/dependency-injection": "^3.4.26|^4.3|^5.0",
"symfony/config": "^3.4|^4.3|^5.0",
"symfony/yaml": "^3.4|^4.3|^5.0",
"jaschilz/php-coverage-badger": "^2.0"
},
"autoload": {
"psr-4": {
"Phpoaipmh\\": ["src/", "tests"],
"Phpoaipmh\\Example\\": "example/src/"
}
},
"scripts": {
"test": "phpunit; vendor/bin/php-coverage-badger build/logs/clover.xml ./coverage.svg",
"quicktest": "phpunit --no-coverage",
"check-style": "phpcs -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
}
}