index/composer.json

38 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "flashwave/index",
"description": "Composer package for the common library for my projects.",
"type": "library",
"homepage": "https://railgun.sh/index",
2023-07-21 18:09:19 +00:00
"license": "bsd-3-clause-clear",
"require": {
"php": ">=8.3",
2024-10-04 23:39:32 +00:00
"ext-mbstring": "*",
"twig/twig": "^3.14",
"twig/html-extra": "^3.13"
},
"require-dev": {
"phpunit/phpunit": "^11.2",
"phpstan/phpstan": "^1.11"
},
"suggest": {
"ext-memcache": "Support for the Index\\Cache\\Memcached namespace (only if you can't use ext-memcached for some reason).",
"ext-memcached": "Support for the Index\\Cache\\Memcached namespace (you should use this instead of ext-memcache).",
"ext-redis": "Support for the Index\\Cache\\Valkey namespace.",
"ext-mysqli": "Support for the Index\\Db\\MariaDb namespace (both mysqlnd and libmysql are supported).",
"ext-sqlite3": "Support for the Index\\Db\\Sqlite namespace."
},
"authors": [
{
"name": "flashwave",
"email": "packagist@flash.moe",
"homepage": "https://flash.moe",
"role": "mom"
}
],
"autoload": {
"psr-4": {
"Index\\": "src"
}
}
}