summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--composer.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..583d342
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,42 @@
+{
+ "name": "nette/application",
+ "description": "Nette Application MVC Component",
+ "homepage": "https://nette.org",
+ "license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "require": {
+ "php": ">=5.3.1",
+ "nette/component-model": "~2.2",
+ "nette/http": "~2.2",
+ "nette/reflection": "~2.2",
+ "nette/security": "~2.2",
+ "nette/utils": "~2.2"
+ },
+ "suggest": {
+ "nette/forms": "Allows to use Nette\\Application\\UI\\Form",
+ "latte/latte": "Allows using Latte in templates"
+ },
+ "require-dev": {
+ "nette/tester": "~1.3",
+ "nette/di": "~2.3",
+ "nette/forms": "~2.2",
+ "nette/robot-loader": "~2.2",
+ "latte/latte": "~2.3.9"
+ },
+ "conflict": {
+ "nette/nette": "<2.2"
+ },
+ "autoload": {
+ "classmap": ["src/"]
+ },
+ "minimum-stability": "dev"
+}