-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·58 lines (58 loc) · 1.7 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
{
"name": "craftpulse/craft-shortlink",
"description": "This Craft CMS plugin adds support to generate an unique url short link",
"type": "craft-plugin",
"version": "4.0.0-beta.19",
"keywords": [
"craft",
"cms",
"shortlink",
"craftcms",
"craft-plugin"
],
"support": {
"docs": "https://github.com/percipioglobal/craft-shortlink/blob/v4/README.md",
"issues": "https://github.com/percipioglobal/craft-shortlink/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Percipio.London",
"homepage": "https://percipio.london"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0",
"nystudio107/craft-plugin-vite": "^4.0.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"craftcms/phpstan": "dev-main",
"codeception/codeception": "^4.1.29",
"vlucas/phpdotenv": "^3.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"percipiolondon\\shortlink\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
},
"extra": {
"name": "Shortlink",
"handle": "shortlink",
"developer": "percipiolondon",
"developerUrl": "https://percipio.london",
"documentationUrl": "https://github.com/percipioglobal/craft-shortlink/blob/v4/README.md",
"changelogUrl": "https://raw.githubusercontent.com/percipioglobal/craft-shortlink/v4/CHANGELOG.md",
"class": "percipiolondon\\shortlink\\Shortlink"
}
}