face-orm/face-parser

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{

  "name": "face/parser",
  "description": "helper to write parser with php",
  "type": "library",
  "keywords": ["parser", "lexer", "compiler"],
  "homepage": "https://github.com/face-orm/face-parser",
  "license": "MIT",

  "authors": [
    {
      "name": "Soufiane GHZAL",
      "homepage": "https://github.com/gsouf"
    }
  ],

  "autoload":{
    "psr-4" : {
      "Face\\Parser\\"   :   "src/"
    }
  },

  "autoload-dev":{
    "psr-4" : {
      "Face\\Parser\\Test\\"   :   "test/suites"
    }
  },

  "require": {
    "php": ">=5.5.0"
  },

  "require-dev":{
    "phpunit/phpunit": "4.1.2",
    "codeclimate/php-test-reporter": "dev-master",
    "squizlabs/php_codesniffer": "~2"
  }
}