You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
912 B
39 lines
912 B
{
|
|
"name": "nette/php-generator",
|
|
"description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.4 features.",
|
|
"keywords": ["nette", "php", "code", "scaffolding"],
|
|
"homepage": "https://nette.org",
|
|
"license": ["BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
|
|
"authors": [
|
|
{
|
|
"name": "David Grudl",
|
|
"homepage": "https://davidgrudl.com"
|
|
},
|
|
{
|
|
"name": "Nette Community",
|
|
"homepage": "https://nette.org/contributors"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.1",
|
|
"nette/utils": "^2.4.2 || ^3.0"
|
|
},
|
|
"require-dev": {
|
|
"nette/tester": "^2.0",
|
|
"tracy/tracy": "^2.3",
|
|
"phpstan/phpstan": "^0.12"
|
|
},
|
|
"autoload": {
|
|
"classmap": ["src/"]
|
|
},
|
|
"minimum-stability": "dev",
|
|
"scripts": {
|
|
"phpstan": "phpstan analyse --level 5 --configuration tests/phpstan.neon src",
|
|
"tester": "tester tests -s"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.3-dev"
|
|
}
|
|
}
|
|
}
|
|
|