forked from nette/nette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1001 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
40
41
{
"name": "nette/nette",
"type": "library",
"description": "Nette Framework - innovative framework for fast and easy development of secured web applications in PHP. Write less, have cleaner code and your work will bring you joy.",
"keywords": ["framework", "mvc", "debugging", "templating", "database", "dbal", "forms", "latte", "neon", "mailing", "images", "micro"],
"homepage": "http://nette.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "David Grudl",
"homepage": "http://davidgrudl.com"
},
{
"name": "Nette Community",
"homepage": "http://nette.org/contributors"
}
],
"require": {
"php": ">=5.3.0",
"ext-iconv": "*",
"ext-tokenizer": "*"
},
"suggest": {
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-memcache": "*",
"ext-gd": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"nette/tester": "@dev"
},
"autoload": {
"files": ["Nette/loader.php"]
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}