-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·38 lines (38 loc) · 997 Bytes
/
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
{
"name": "thepixelage/craft-fragments",
"description": "Fragments is a Craft CMS plugin for managing content and presentational fragments",
"type": "craft-plugin",
"version": "4.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft-fragments"
],
"license": "proprietary",
"authors": [
{
"name": "ThePixelAge",
"homepage": "https://www.thepixelage.com"
}
],
"require": {
"php": "^8.0",
"craftcms/cms": "^4.0.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"thepixelage\\fragments\\": "src/"
}
},
"extra": {
"name": "Fragments",
"handle": "fragments",
"developer": "ThePixelAge",
"developerUrl": "https://www.thepixelage.com",
"documentationUrl": "https://www.thepixelage.com/plugins/fragments/",
"class": "thepixelage\\fragments\\Plugin"
}
}