44 lines
984 B
JSON
44 lines
984 B
JSON
{
|
|
"name": "nette/robot-loader",
|
|
"description": "🍀 Nette RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.",
|
|
"keywords": ["nette", "autoload", "class", "trait", "interface"],
|
|
"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": "8.1 - 8.5",
|
|
"ext-tokenizer": "*",
|
|
"nette/utils": "^4.0"
|
|
},
|
|
"require-dev": {
|
|
"nette/tester": "^2.4",
|
|
"tracy/tracy": "^2.9",
|
|
"phpstan/phpstan-nette": "^2.0@stable"
|
|
},
|
|
"autoload": {
|
|
"classmap": ["src/"],
|
|
"psr-4": {
|
|
"Nette\\": "src"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"scripts": {
|
|
"phpstan": "phpstan analyse",
|
|
"tester": "tester tests -s"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "4.1-dev"
|
|
}
|
|
}
|
|
}
|