-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.08 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
{
"name": "cerpus/cerpushelper",
"description": "Base package for common components",
"license": "GPL-3.0-only",
"require": {
"php": "^8.2",
"ext-json": "*",
"auth0/auth0-php": "^8.4",
"cerpus/cerpusauthlib-core": "^0.0",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/oauth-subscriber": "^0.6.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"kamermans/guzzle-oauth2-subscriber": "^1.0"
},
"require-dev": {
"fakerphp/faker": "^1.16",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^9.5"
},
"authors": [
{
"name": "Thomas Horn Sivertsen",
"email": "[email protected]"
},
{
"name": "Odd-Arne Johansen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Cerpus\\Helper\\": "src"
},
"files": [
"src/Helpers/Profile.php"
]
},
"autoload-dev": {
"psr-4": {
"Cerpus\\HelperTests\\": "tests"
}
}
}