summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..30dd5ff
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,21 @@
+{
+ "name": "seld/jsonlint",
+ "description": "JSON Linter",
+ "keywords": ["json", "parser", "linter", "validator"],
+ "type": "library",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "require": {
+ "php": "^5.3 || ^7.0"
+ },
+ "autoload": {
+ "psr-4": { "Seld\\JsonLint\\": "src/Seld/JsonLint/" }
+ },
+ "bin": ["bin/jsonlint"]
+}