-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 1.28 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
{
"name": "springworks/entity-diagrams",
"description": "Generate entity diagrams that show how the different parts of your Craft site relate to each other",
"type": "craft-plugin",
"version": "2.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"entity diagrams"
],
"support": {
"docs": "https://github.com/steverowling/entity-diagrams/blob/master/README.md",
"issues": "https://github.com/steverowling/entity-diagrams/issues"
},
"license": "MIT",
"authors": [
{
"name": "Steve Rowling",
"homepage": "https://springworks.co.uk"
}
],
"require": {
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"springworks\\entitydiagrams\\": "src/"
}
},
"extra": {
"name": "Entity Diagrams",
"handle": "entity-diagrams",
"developer": "Steve Rowling",
"developerUrl": "https://springworks.co.uk",
"documentationUrl": "https://github.com/steverowling/entity-diagrams/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/steverowling/entity-diagrams/master/CHANGELOG.md",
"class": "springworks\\entitydiagrams\\EntityDiagrams"
}
}