-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·57 lines (57 loc) · 1.67 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
{
"name": "craftpulse/craft-timeloop",
"description": "This Craft plugin will generate an array of dates between a start and end date based on frequency.",
"type": "craft-plugin",
"version": "4.1.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"timeloop"
],
"support": {
"docs": "https://github.com/percipioglobal/craft-timeloop/blob/v4/README.md",
"issues": "https://github.com/percipioglobal/craft-timeloop/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Percipio.London",
"homepage": "https://percipio.london"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0-beta.1",
"nystudio107/craft-plugin-vite": "^4.0.0-beta.1"
},
"require-dev": {
"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\\timeloop\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
},
"extra": {
"name": "Timeloop",
"handle": "timeloop",
"developer": "percipiolondon",
"developerUrl": "https://percipio.london",
"documentationUrl": "https://github.com/percipioglobal/craft-timeloop/blob/v4/README.md",
"changelogUrl": "https://raw.githubusercontent.com/percipiolondon/craft-timeloop/v1/CHANGELOG.md",
"class": "percipiolondon\\timeloop\\Timeloop"
}
}