-
Chris Kankiewicz authored10a5990b
This project manages its dependencies using Composer.
Learn more
{
"name": "phlak/directory-lister",
"description": "PHP directory lister",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Chris Kankiewicz",
"email": "Chris@ChrisKankiewicz.com"
}
],
"support": {
"issues": "https://github.com/DirectoryLister/DirectoryLister/issues"
},
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-zip": "*",
"erusev/parsedown-extra": "^0.8.1",
"filp/whoops": "^2.7",
"phlak/splat": "^4.0",
"php-di/php-di": "^6.0",
"php-di/slim-bridge": "^3.0",
"psr/http-message": "^1.0.1",
"slim/twig-view": "^3.0",
"symfony/cache": "^5.0",
"symfony/finder": "^5.0",
"symfony/translation": "^5.0",
"symfony/yaml": "^5.0",
"tightenco/collect": "^8.0",
"vlucas/phpdotenv": "^5.0"
},
"require-dev": {
"beyondcode/expose": "^2.0",
"phlak/coding-standards": "^2.0",
"phpstan/phpstan": "^1.0",
"symfony/var-dumper": "^5.0",
},
"suggest": {
"ext-apcu": "Required to use the APCu cache driver",
"ext-memcached": "Required to use the Memcached driver",
"ext-redis": "Required to use the Redis cache driver"
},
"autoload": {
"psr-4": {
"App\\": "app/src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4"
},
"platform-check": true,
"sort-packages": true,
"vendor-dir": "app/vendor"
},
"scripts": {
"serve": "php -S localhost:8080",
71727374757677
"post-create-project-cmd": [
"npm install && npm run dev",
"cp .env.example .env"
]
}
}