forked from creode/magic-login
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·81 lines (81 loc) · 2.68 KB
/
composer.json
File metadata and controls
executable file
·81 lines (81 loc) · 2.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "creode/magic-login",
"description": "A plugin which sits on top of the existing ",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"magic login"
],
"support": {
"docs": "https://github.com/creode/magic-login/blob/master/README.md",
"issues": "https://github.com/creode/magic-login/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Creode",
"homepage": "https://www.creode.co.uk"
}
],
"config": {
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:Shamunr/RandomLib.git"
}
],
"require": {
"craftcms/cms": "^4.0.0-alpha",
"paragonie/random-lib": "^2.0"
},
"replace": {
"paragonie/random_compat": "^2"
},
"require-dev": {
"codeception/codeception": "^4.0",
"vlucas/phpdotenv": "^3.4.0",
"codeception/module-yii2": "^1.1",
"codeception/module-asserts": "^1.3",
"marcocesarato/php-conventional-changelog": "^1.12"
},
"autoload": {
"psr-4": {
"creode\\magiclogin\\": "src/",
"creode\\magiclogintests\\fixtures\\": "tests/fixtures/"
}
},
"scripts": {
"test": "php vendor/bin/codecept run",
"coverage-test": "XDEBUG_MODE=coverage ./vendor/bin/codecept run --coverage-html coverage-report",
"changelog": "php vendor/bin/conventional-changelog",
"release": "php vendor/bin/conventional-changelog --commit",
"release:patch": "php vendor/bin/conventional-changelog --patch --commit",
"release:minor": "php vendor/bin/conventional-changelog --minor --commit",
"release:major": "php vendor/bin/conventional-changelog --major --commit"
},
"extra": {
"name": "Magic Login",
"handle": "magic-login",
"developer": "Creode",
"developerUrl": "https://www.creode.co.uk",
"documentationUrl": "https://github.com/creode/magic-login/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/creode/magic-login/master/CHANGELOG.md",
"components": {
"MagicLoginAuthService": "creode\\magiclogin\\services\\MagicLoginAuthService",
"MagicLoginRandomGeneratorService": "creode\\magiclogin\\services\\MagicLoginRandomGeneratorService"
},
"class": "creode\\magiclogin\\MagicLogin"
},
"version": "3.0.0"
}