-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
126 lines (126 loc) · 2.92 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "shelane/knot-project",
"description": "The Knot project for easy web applications.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Shelane French",
"role": "Maintainer"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"oomphinc/composer-installers-extender": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.2",
"ext-pdo": "*",
"composer/installers": "^2.1",
"fortawsome/fontawesome": "^6.4",
"jquery/jquery": "^3.7",
"oomphinc/composer-installers-extender": "^2.0",
"shelane/knot": "dev-main",
"symfony/mailer": "^6.3",
"twbs/bootstrap": "5.3.1"
},
"extra": {
"installer-types": [
"asset-library",
"bower-asset",
"npm-asset"
],
"installer-paths": {
"starterkit/libraries/{$name}": [
"fortawsome/fontawesome",
"twbs/bootstrap",
"type:asset-library",
"type:bower-asset",
"type:npm-asset"
]
}
},
"repositories": {
"fontawesome": {
"type": "package",
"package": {
"name": "fortawsome/fontawesome",
"version": "6.4.0",
"type": "asset-library",
"extra": {
"installer-name": "fontawesome"
},
"dist": {
"url": "https://github.com/FortAwesome/Font-Awesome/releases/download/6.4.0/fontawesome-free-6.4.0-web.zip",
"type": "zip"
},
"require": {
"composer/installers": "~2.0"
}
}
},
"bootstrap": {
"type": "package",
"package": {
"name": "twbs/bootstrap",
"version": "5.3.1",
"type": "asset-library",
"extra": {
"installer-name": "bootstrap"
},
"dist": {
"url": "https://github.com/twbs/bootstrap/archive/refs/tags/v5.3.1.zip",
"type": "zip"
},
"require": {
"composer/installers": "~2.0"
}
}
},
"jquery": {
"type": "package",
"package": {
"name": "jquery/jquery",
"version": "3.7.0",
"type": "asset-library",
"extra": {
"installer-name": "jquery"
},
"dist": {
"url": "https://github.com/jquery/jquery/archive/refs/tags/3.7.0.zip",
"type": "zip"
},
"require": {
"composer/installers": "~2.0"
}
}
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"autoload": {
"psr-4": {
"App\\": "_knot/App/"
}
},
"scripts": {
"post-install-cmd": [
"./post-inst-update-knot.sh",
"./post-install-starterkit.sh"
],
"post-update-cmd": [
"./post-inst-update-knot.sh"
]
},
"require-dev": {
"acquia/coding-standards": "^2.0",
"phpmd/phpmd": "^2.13"
},
"minimum-stability": "dev",
"prefer-stable": true
}