forked from hostnet/asset-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.69 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
{
"name": "hostnet/asset-bundle",
"type": "symfony-bundle",
"description": "Bundle to glue Assets",
"license": "MIT",
"require": {
"php": ">=7.1",
"hostnet/asset-lib": "dev-master",
"symfony/symfony": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^6.3"
},
"autoload": {
"psr-4": {
"Hostnet\\Bundle\\AssetBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hostnet\\Bundle\\AssetBundle\\": "test/"
}
},
"repositories": {
"hostnet": {
"type": "composer",
"url": "https://packagist.hostnetbv.nl"
},
"resolver": {
"type": "package",
"package": {
"name": "hostnet/asset-lib",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/hostnet/asset-lib.git",
"reference": "818991201cafc266f0759e27bf149a67d460dc38"
},
"require": {
"php": ">=7.0",
"psr/simple-cache": "^1.0",
"symfony/console": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"symfony/process": "^3.3"
},
"autoload": {
"psr-4": {
"Hostnet\\Component\\Resolver\\": "src/"
}
}
}
}
},
"archive": {
"exclude": [
"/test"
]
}
}