-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
22 lines (22 loc) · 634 Bytes
/
composer.json
File metadata and controls
22 lines (22 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "emileperron/git-version-strategy-bundle",
"description": "A custom version strategy for Symfony assets that uses the current Git commit short-hash as the version identifier.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Émile Perron",
"email": "contact@emileperron.com"
}
],
"require": {
"symfony/http-kernel": ">=2.0.0",
"symfony/asset": ">=3.1.0",
"symfony/framework-bundle": "*"
},
"autoload": {
"psr-4": {
"Emileperron\\GitVersionStrategyBundle\\": "src/"
}
}
}