Skip to content

Commit

Permalink
Fix composer
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcollin committed Oct 1, 2019
1 parent 02717f6 commit 835dd22
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,44 @@
{
"name": "jmcollin/autoindex",
"description": "Automatically add an index.php in all directories recursively",
"type": "library",
"license": "MIT",
"version": "1.0.0",
"keywords": [
"directory-traversal-vulnerability",
"security",
"vulnerability",
"cli-utility",
"php-library"
],
"authors": [{
"name": "Jean-Marie Collin",
"email": "[email protected]",
"role": "Developer"
}],
"bin": [
"bin/autoindex"
],
"require": {
"php": "^7.1"
"php": ">=7.1"
},
"autoload": {
"psr-0": { "AutoIndex": "src/" },
"exclude-from-classmap": [
"/tests/"
]
},
"require-dev": {
"phpstan/phpstan": "^0.11.16",
"symplify/easy-coding-standard": "^6.0"
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
"dev-composer": "1.0-dev"
}
},
"require-dev": {
"phpstan/phpstan": "^0.11.16",
"symplify/easy-coding-standard": "^6.0"
"config": {
"preferred-install": "dist"
}
}

0 comments on commit 835dd22

Please sign in to comment.