-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.75 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
66
67
68
{
"name": "oxygen/auth",
"description": "Authorisation Component",
"license": "MIT",
"keywords": [
"cms",
"framework",
"OxygenExtension"
],
"authors": [
{
"name": "Chris Chamberlain",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"oxygen/core": "~0.15.0",
"oxygen/crud": "~0.12.0",
"oxygen/data": "~0.12.0",
"oxygen/preferences": "~0.6.0",
"illuminate/support": "^10.0",
"laravel/sanctum": "^3.2",
"guzzlehttp/guzzle": "^7.4.5",
"darkghosthunter/laraguard": "dev-master",
"ext-json": "*",
"ext-zip": "*",
"lab404/laravel-impersonate": "^1.7",
"webmozart/assert": "^1.10"
},
"autoload": {
"psr-4": {
"Oxygen\\Auth\\": "src/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Oxygen\\Auth\\AuthServiceProvider",
"Oxygen\\Auth\\Session\\DoctrineSessionServiceProvider"
]
}
},
"config": {
"platform": {
"php": "8.1.0"
},
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/oxygen-cms/laraguard-doctrine"
}
],
"require-dev": {
"phpstan/phpstan": "^1.8",
"phpspec/phpspec": "^7.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-webmozart-assert": "^1.2.1"
},
"scripts": {
"test": "vendor/bin/phpspec run && vendor/bin/phpstan analyze src --level 5 --memory-limit 256M"
}
}