-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
65 lines (65 loc) · 1.69 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
{
"name": "laralabs/here-api-oauth2-client",
"description": "Easily get an OAuth 2.0 access token to use with the HERE API services",
"license": "MIT",
"authors": [
{
"name": "Matt Clinton",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.2",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"brianium/paratest": "^7.0",
"mockery/mockery": "^1.0",
"clntdev/coding-standards": "^1.0",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.1",
"spatie/phpunit-snapshot-assertions": "^5.0"
},
"repositories": [
{
"type": "composer",
"url": "https://composer.mattc.dev"
}
],
"autoload": {
"psr-4": {
"Laralabs\\HereOAuth\\": "src/"
},
"files": [
"src/Helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Laralabs\\HereOAuth\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs ./src ./tests --ignore=*.blade.php,database/migrations/*,**/__snapshots__/* --standard=./vendor/clntdev/coding-standards/phpcs.xml",
"test": "vendor/bin/paratest"
},
"extra": {
"laravel": {
"providers": [
"Laralabs\\HereOAuth\\HereOAuthServiceProvider"
],
"aliases": {
"HereOAuth": "Laralabs\\HereOAuth\\Facades\\HereOAuth"
}
}
},
"config": {
"discard-changes": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}