initial commit
This commit is contained in:
41
vendor/biblys/isbn/composer.json
vendored
Normal file
41
vendor/biblys/isbn/composer.json
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "biblys/isbn",
|
||||
"description": "A PHP library to convert and validate ISBNs",
|
||||
"time": "2021-03-05",
|
||||
"keywords": [
|
||||
"ISBN",
|
||||
"EAN",
|
||||
"GTIN",
|
||||
"Book"
|
||||
],
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/biblys/isbn",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Clement Bourgoin",
|
||||
"email": "c@iwzr.fr"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/biblys/isbn/issues"
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^6 || ^7 || ^8",
|
||||
"guzzlehttp/guzzle": "^6.2"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user