{
  "name": "solis/expressive",
  "type": "library",
  "description": "Object-Relational-Mapper para PHP",
  "homepage": "https://github.com/rafaelbeecker/phpexpressive",
  "license": "MIT",
  "authors": [
    {
      "name": "Rafael Becker",
      "email": " [email protected]"
    }
  ],
  "require": {
    "solis/phpmagic": "~v1.0",
    "illuminate/database": "^5.4",
    "illuminate/events": "^5.2",
    "doctrine/dbal": "~2.5"
  },
  "require-dev": {
    "phpunit/phpunit": "~v6.0",
    "squizlabs/php_codesniffer": "3.*",
    "codacy/coverage": "dev-master"
  },
  "autoload": {
    "psr-4": {
      "Solis\\Expressive\\": "src"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Solis\\Expressive\\Test\\": "tests",
      "Solis\\Expressive\\Sample\\": "sample/models"
    }
  },
  "scripts": {
    "test": "php vendor/bin/phpunit",
    "check-style": "vendor/bin/phpcs --standard=psr2 src tests",
    "fix-style": "vendor/bin/phpcbf --standard=psr2 src tests"
  }
}
 
  |