summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..800a9b9
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,31 @@
+{
+ "name": "jakubledl/dissect",
+ "description": "Lexing and parsing in pure PHP",
+ "keywords": ["lexing", "parsing", "ast", "parser"],
+ "homepage": "https://github.com/jakubledl/dissect",
+ "license": "unlicense",
+ "authors": [
+ {
+ "name": "Jakub Lédl",
+ "email": "jakubledl@gmail.com"
+ }
+ ],
+
+ "require": {
+ "php": ">=5.3.3"
+ },
+
+ "require-dev": {
+ "symfony/console": "~2.1"
+ },
+
+ "suggest": {
+ "symfony/console": "for the command-line tool"
+ },
+
+ "bin": ["bin/dissect.php", "bin/dissect"],
+
+ "autoload": {
+ "psr-0": { "Dissect": ["src/"] }
+ }
+}