A PHP library for creating InterLibrary Loan (ILL) requests using the RapidILL API InsertRequest method.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
545 B

{
"name": "rapidill/request",
"description": "PHP library for creating InterLibrary Loan requests via the RapidILL API",
"type": "library",
"license": "GPL-2.0-or-later",
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-soap": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"RapidIll\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RapidIll\\Tests\\": "tests/"
}
}
}