PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of WsdlToPhp   PHP Code Generator   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Code Generator
Generate PHP code elements programatically
Author: By
Last change: Update PHP CS Fixer and corresponding setting file
Add PHPStan
Date: 1 year ago
Size: 1,121 bytes
 

Contents

Class file image Download
{ "name" : "wsdltophp/phpgenerator", "description" : "Generate php source file", "license" : "MIT", "keywords" : [ "php", "generator" ], "type" : "library", "support" : { "email" : "contact@wsdltophp.com" }, "homepage" : "https://github.com/WsdlToPhp/PhpGenerator", "authors" : [ { "name" : "Mikaël DELSOL", "email" : "contact@wsdltophp.com", "role" : "Owner" } ], "scripts": { "test": "vendor/bin/phpunit", "lint": "vendor/bin/php-cs-fixer fix --ansi --diff --verbose", "phpstan": "vendor/bin/phpstan analyze src --level=3" }, "require" : { "php": ">=7.4", "phpstan/phpstan": "^1.5" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.0", "phpunit/phpunit": "^9" }, "autoload" : { "psr-4" : { "WsdlToPhp\\PhpGenerator\\" : "src" } }, "autoload-dev": { "psr-4": { "WsdlToPhp\\PhpGenerator\\Tests\\": "tests" } }, "config": { "sort-packages": true } }