-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
68 lines (68 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "macfja/book-retriever",
"description": "Library to retrieve data about books",
"keywords": [
"book",
"isbn",
"google-books",
"abe-books",
"amazon-books",
"antoine-online",
"archive-org-books",
"copac",
"library-hub",
"digit-eyes",
"ebay-books",
"ebooks",
"euro-bunch",
"feed-books",
"good-reads",
"isbn-db",
"la-librairie",
"library-thing",
"loc",
"oclc",
"open-library",
"random-house"
],
"license": "MIT",
"require": {
"php": ">=7.2",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"cedcommerce/ebay-sdk-php": "^18.0",
"fale/isbn": "^3.1",
"masterminds/html5": "^2.7",
"njt/good-reads": "^1.0",
"php-http/discovery": "^1.7",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"scriptotek/google-books": "^0.2.5"
},
"require-dev": {
"ext-zlib": "*",
"bamarni/composer-bin-plugin": "^1.3",
"ergebnis/composer-normalize": "^2.3",
"nyholm/psr7": "^1.2",
"php-http/curl-client": "^2.1",
"php-http/mock-client": "^1.3",
"phpunit/phpunit": "^9.0",
"roave/security-advisories": "dev-master",
"swisnl/php-http-fixture-client": "^2.2"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"MacFJA\\BookRetriever\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"MacFJA\\BookRetriever\\Tests\\": "Tests/"
}
}
}