forked from contributte/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.17 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
{
"abandoned": "contributte/webpack",
"name": "webwings/webpack-nette-adapter",
"description": "Webpack adapter for Nette Framework.",
"keywords": ["nette", "webpack"],
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jiří Pudil",
"email": "[email protected]",
"homepage": "https://jiripudil.cz"
},
{
"name": "Martin Bargl",
"email": "[email protected]",
"homepage": "https://webwings.cz"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/webwingscz/WebpackNetteAdapter/issues"
},
"require": {
"php": ">= 7.0.0",
"nette/di": "^2.4",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"nette/tester": "^2.0.0",
"mockery/mockery": "^1.0.0",
"nette/application": "^2.4.0",
"nette/bootstrap": "^2.4.0",
"latte/latte": "^2.4.0",
"tracy/tracy": "^2.4.0"
},
"suggest": {
"tracy/tracy": "to enable asset debugging in the debug bar panel",
"latte/latte": "to enable Latte integration via {webpack} macro"
},
"autoload": {
"psr-4": {
"Oops\\WebpackNetteAdapter\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"OopsTests\\WebpackNetteAdapter\\": "tests/WebpackNetteAdapter"
}
}
}