mirror of
https://github.com/php/web-pecl.git
synced 2026-03-23 23:02:08 +01:00
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "php/web-pecl",
|
|
"description": "The PECL website - PHP Extension Community Library",
|
|
"type": "project",
|
|
"keywords": ["pecl", "website"],
|
|
"homepage": "https://pecl.php.net",
|
|
"readme": "README.md",
|
|
"license": "PHP license",
|
|
"authors": [
|
|
{
|
|
"name": "PECL contributors",
|
|
"homepage": "https://pecl.php.net/credits.php"
|
|
}
|
|
],
|
|
"support": {
|
|
"email": "pecl-dev@lists.php.net",
|
|
"issues": "https://bugs.php.net/",
|
|
"wiki": "https://wiki.php.net/",
|
|
"irc": "irc://irc.efnet.org/php.pecl",
|
|
"source": "https://git.php.net/?p=web/pecl.git",
|
|
"docs": "https://php.net/manual",
|
|
"rss": "https://pecl.php.net/feeds/latest.rss"
|
|
},
|
|
"minimum-stability": "stable",
|
|
"require": {
|
|
"php": "^7.2",
|
|
"ext-gd": "*",
|
|
"ext-json": "*",
|
|
"ext-pdo": "*",
|
|
"ext-pdo_mysql": "*",
|
|
"ext-phar": "*",
|
|
"ext-session": "*",
|
|
"ext-zlib": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7.5",
|
|
"symfony/dotenv": "^4.2",
|
|
"symfony/console": "^4.2",
|
|
"fzaninotto/faker": "^1.8"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src/"
|
|
},
|
|
"classmap": ["include/jpgraph/"]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"App\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts":{
|
|
"post-install-cmd": [
|
|
"App\\Utils\\ComposerScripts::installConfig",
|
|
"App\\Utils\\ComposerScripts::createDirectories"
|
|
]
|
|
}
|
|
}
|