This repository was archived by the owner on Apr 28, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.16 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.16 KB
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": "userfrosting/assets",
"type": "library",
"description": "Assets module for UserFrosting",
"keywords": ["userfrosting", "assets", "javascript", "css", "images"],
"homepage": "https://github.com/userfrosting/assets",
"license" : "MIT",
"authors" : [
{
"name": "Alexander Weissman",
"homepage": "https://alexanderweissman.com"
},
{
"name": "Jordan Mele",
"email": "SiliconSolder@outlook.com.au",
"homepage": "https://blog.djmm.me"
}
],
"require": {
"php": "^7.1",
"userfrosting/support": "~4.3.0 | ~4.4.0 | ~4.5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"phpunit/phpunit": "^7.5 | ^8.5",
"slim/slim": "^3"
},
"suggest": {
"slim/slim": "Required if using class UserFrosting\\Assets\\ServeAsset\\SlimServeAsset to serve development stage frontend assets."
},
"autoload": {
"psr-4": {
"UserFrosting\\Assets\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Assets\\Tests\\": "tests"
}
}
}