forked from sygic-travel/nette-assetic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 790 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
31
32
33
34
35
36
37
38
39
{
"name": "tripomatic/nette-assetic",
"type": "library",
"description": "Assetic for Nette Framework",
"keywords": ["nette", "assetic"],
"homepage": "https://github.com/tripomatic/nette-assetic",
"license": "MIT",
"authors": [
{
"name": "Jan Jakes",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.1",
"kriswallsmith/assetic": "^1.2",
"nette/application": "^2.4",
"nette/di": "^2.4",
"nette/http": "^2.4",
"latte/latte": "^2.4",
"nette/php-generator": "^2.4"
},
"require-dev": {
},
"suggest": {
"symfony/console": "Allows using Symfony\\Console commands"
},
"autoload": {
"psr-4": {
"Tripomatic\\NetteAssetic\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}