-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.26 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.26 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
{
"name": "sytxlabs/nologin",
"description": "This module adds a cross-site login system to the platform. It allows users to log in to the platform without having to enter their credentials again if they are already logged in on another site.",
"type": "library",
"license": "MIT",
"version": "1.0.0",
"keywords": [
"nobyte",
"nologin",
"cross-site login",
"single sign-on",
"sso",
"authentication"
],
"authors": [
{
"name": "Shaun Lüdeke",
"email": "info@sytxlabs.eu",
"homepage": "https://sytxlabs.eu",
"role": "Developer"
}
],
"homepage": "https://sytxlabs.eu",
"readme": "README.md",
"autoload": {
"psr-4": {
"SytxLabs\\NoLogin\\": "src/"
}
},
"require": {
"ext-openssl": "*",
"ext-mbstring": "*",
"php": "^8.2|^8.3|^8.4",
"guzzlehttp/guzzle": "^7.9.3"
},
"require-dev": {
"portavice/laravel-pint-config": "^2.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"cs": "pint --config vendor/portavice/laravel-pint-config/pint.json --test",
"csfix": "pint --config vendor/portavice/laravel-pint-config/pint.json"
},
"minimum-stability": "dev",
"prefer-stable": true
}