-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.36 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
{
"name": "alsoasked/also-asked-php",
"description": "A PHP library for the AlsoAsked API",
"version": "1.1.0",
"homepage": "https://alsoasked.com",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jack Wakefield",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/AlsoAsked/also-asked-php/issues",
"source": "https://github.com/AlsoAsked/also-asked-php",
"docs": "https://developers.alsoasked.com"
},
"minimum-stability": "stable",
"require": {
"jane-php/open-api-runtime": "^7.5",
"php-http/client-common": "^2.7"
},
"require-dev": {
"jane-php/open-api-3": "dev-next",
"nyholm/psr7": "^1.8",
"friendsofphp/php-cs-fixer": "^3.23",
"adamwojs/php-cs-fixer-phpdoc-force-fqcn": "^2.0",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.16",
"pedrotroller/php-cs-custom-fixer": "^2.32"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/AlsoAsked/janephp"
}
],
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"AlsoAsked\\Api\\": "generated/"
}
}
}