-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
30 lines (30 loc) · 910 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
{
"name": "heyday/silverstripe-hashpath",
"type": "silverstripe-vendormodule",
"description": "Hash path provides a function in SilverStripe templates which given a path to an asset returns a path including a hash of the asset",
"license": "MIT",
"autoload": {
"psr-4": {
"Heyday\\HashPath\\": "src/",
"Heyday\\HashPath\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/heyday/silverstripe-hashpath/issues",
"source": "https://github.com/heyday/silverstripe-hashpath"
},
"require": {
"silverstripe/framework": "^5"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}