-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
40 lines (40 loc) · 1014 Bytes
/
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
{
"name": "scriptotek/google-books",
"type": "library",
"description": "Package for interacting with the Google Books API",
"homepage": "http://github.com/scriptotek/google-books",
"require": {
"guzzlehttp/guzzle": "^6.2|^7.0"
},
"require-dev": {
"phpspec/phpspec": ">=2",
"mockery/mockery": ">=0.9.5 "
},
"license": "ISC",
"authors": [
{
"name": "Dan Michael O. Heggø",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Scriptotek\\GoogleBooks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Scriptotek\\GoogleBooks\\": "spec/"
}
},
"extra": {
"laravel": {
"providers": [
"Scriptotek\\GoogleBooks\\GoogleBooksServiceProvider"
],
"aliases": {
"GoogleBooks": "Scriptotek\\GoogleBooks\\GoogleBooksFacade"
}
}
}
}