-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.1 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.1 KB
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
{
"name": "own3d/id",
"description": "PHP OWN3D ID API Client for Laravel 5+",
"license": "MIT",
"authors": [
{
"name": "René Preuß",
"email": "rene.p@own3d.tv"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/console": "^10.0|^11.0|^12.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"socialiteproviders/manager": "^3.4|^4.0.1",
"doctrine/dbal": "^2.10|^3.6|^4.0",
"firebase/php-jwt": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"orchestra/testbench": "^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Own3d\\Id\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Own3d\\Id\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"docs": "php generator/generate-docs.php",
"fix": [
"vendor/bin/php-cs-fixer fix"
]
},
"extra": {
"laravel": {
"providers": [
"Own3d\\Id\\Providers\\Own3dIdServiceProvider"
],
"aliases": {
"Own3dId": "Own3d\\Id\\Facades\\Own3dId"
}
}
}
}