summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-09-12 13:48:36 +0200
committerRemi Collet <remi@remirepo.net>2019-09-12 13:48:36 +0200
commit66911f7b4b30c8a10259afde9d65837307003ed3 (patch)
tree046e92ee152b92b295314b90d57eea579fc3326c /composer.json
new package
Diffstat (limited to 'composer.json')
-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..a96e1e4
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,42 @@
+{
+ "name": "swaggest/json-schema",
+ "description": "High definition PHP structures with JSON-schema based validation",
+ "type": "library",
+ "require": {
+ "php": ">=5.4",
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "phplang/scope-exit": "^1.0",
+ "swaggest/json-diff": "^3.5.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "4.8.35",
+ "phpunit/php-code-coverage": "2.2.4"
+ },
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Viacheslav Poturaev",
+ "email": "vearutop@gmail.com"
+ }
+ ],
+ "support": {
+ "email": "vearutop@gmail.com"
+ },
+ "prefer-stable": true,
+ "autoload": {
+ "psr-4": {
+ "Swaggest\\JsonSchema\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Swaggest\\JsonSchema\\Tests\\": "tests/src/"
+ }
+ },
+ "config": {
+ "platform": {
+ "php": "5.4.45"
+ }
+ }
+}