-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
63 lines (63 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
59
60
61
62
63
{
"name": "transformstudios/events",
"type": "statamic-addon",
"license": "proprietary",
"description": "Statamic addon to create & manage events",
"authors": [
{
"name": "Erin Dalzell",
"email": "[email protected]",
"homepage": "https://transformstudios.com"
}
],
"autoload": {
"psr-4": {
"TransformStudios\\Events\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"TransformStudios\\Events\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Events",
"description": "Statamic addon to create & manage events"
},
"laravel": {
"providers": [
"TransformStudios\\Events\\ServiceProvider"
]
}
},
"require": {
"php": "^8.2",
"edalzell/forma": "^2.0 || ^3.0",
"laravel/framework": "^9.6 || ^10.11 || ^11.0",
"rlanvin/php-rrule": "^2.3.1",
"spatie/calendar-links": "^1.0",
"spatie/icalendar-generator": "^2.3.3",
"statamic/cms": "^4.5 || ^5.0"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^6.0 || ^7.0",
"phpunit/phpunit": "^9.0 || ^10.0",
"orchestra/testbench": "^7.0 || ^8.0",
"spatie/laravel-ray": "^1.35",
"spatie/test-time": "^1.2"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"repositories": []
}