forked from kennisnet/phpECKCS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 782 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 782 Bytes
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
{
"name": "kennisnet/phpeckcs",
"description": "PHP normalizer for ECK records from Koppelpunt Catalogusinformatie",
"homepage": "https://github.com/kennisnet/phpECKCS",
"license": "MIT",
"autoload": {
"psr-4": {
"Kennisnet\\ECK\\": "src/",
"Kennisnet\\ECK\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.3",
"ext-curl": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"phpstan/phpstan": "^0.12.52"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:coverage": "vendor/bin/phpunit --coverage-html .coverage",
"analyse": "vendor/bin/phpstan analyse"
},
"suggest": {
"kennisnet/edurepsearch": "Provides a standard interface for browsing and searching in the CatalogService."
}
}