index/composer.json

46 lines
1.5 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"
2024-10-18 20:47:29 +00:00
},
"files": [
2024-10-18 20:56:56 +00:00
"src/Cache/ArrayCache/_ndx.php",
"src/Cache/Memcached/_ndx.php",
"src/Cache/Valkey/_ndx.php",
2024-10-18 20:47:29 +00:00
"src/Db/MariaDb/_ndx.php",
"src/Db/NullDb/_ndx.php",
"src/Db/Sqlite/_ndx.php"
]
}
}