andersao/laravel-fiql-parser

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "prettus/laravel-fiql-parser",
  "description": "Laravel FIQL Parser",
  "keywords": [
    "fiql-parser",
    "fiql",
    "laravel"
  ],
  "type": "library",
  "autoload": {
    "psr-4": {
      "Prettus\\Laravel\\FIQL\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Tests\\": "tests/"
    }
  },
  "authors": [
    {
      "name": "Anderson Andrade",
      "homepage": "https://andersonandra.de",
      "email": "contato@andersonandra.de",
      "role": "Developer"
    }
  ],
  "scripts": {
    "test": "phpunit",
    "test:unit": "@test",
    "test:ci": "@test",
    "test:coverage": "@test --coverage-clover coverage.clover",
    "format": "php-cs-fixer fix ./src",
    "format:tests": "php-cs-fixer fix ./tests"
  },
  "homepage": "https://github.com/andersao/laravel-fiql-parser",
  "support": {
    "email": "contato@andersonandra.de",
    "issues": "https://github.com/andersao/laravel-fiql-parser/issues",
    "wiki": "https://github.com/andersao/laravel-fiql-parser",
    "source": "https://github.com/andersao/laravel-fiql-parser",
    "docs": "https://github.com/andersao/laravel-fiql-parser"
  },
  "license": "MIT",
  "require": {
    "illuminate/support": "^8.64",
    "prettus/php-fiql-parser": "dev-main"
  },
  "config": {
    "preferred-install": "dist",
    "sort-packages": true
  },
  "extra": {
    "laravel": {
      "providers": [
        "Prettus\\Laravel\\FIQL\\FIQLServiceProvider"
      ]
    }
  },
  "require-dev": {
    "friendsofphp/php-cs-fixer": "^3.2",
    "orchestra/testbench": "^6.21",
    "phpunit/phpunit": "^9.5"
  }
}