-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
43 lines (43 loc) · 1.13 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": "biblys/isbn",
"description": "A PHP library to convert and validate ISBNs",
"time": "2022-11-26",
"keywords": [
"ISBN",
"EAN",
"GTIN",
"Book"
],
"license": "MIT",
"homepage": "https://github.com/biblys/isbn",
"authors": [
{
"name": "Clement Latzarus",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/biblys/isbn/issues"
},
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
"ext-json": "*",
"ext-simplexml": "*",
"phpunit/phpunit": "^6 || ^7 || ^8 || ^11",
"guzzlehttp/guzzle": "^7.0"
},
"autoload": {
"psr-0": {
"Biblys": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"update-ranges": "php bin/update-ranges.php",
"docker:install": "docker run --rm -v $PWD:/app prooph/composer:${PHP_VERSION:-7.4} install",
"docker:test": "@composer docker:install && docker run --rm -v $PWD:/app prooph/composer:${PHP_VERSION:-7.4} test",
"docker:update-ranges": "@composer docker:install && docker run --rm -v $PWD:/app prooph/composer:${PHP_VERSION:-7.4} update-ranges"
}
}