forked from jmcollin/autoindex
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
36 lines (36 loc) · 1013 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "prestashop/autoindex",
"description": "Automatically add an 'index.php' in all the current or specified directories and all sub-directories.",
"homepage": "https://github.com/PrestaShopCorp/autoindex",
"license": "AFL-3.0",
"authors": [
{
"name": "PrestaShop SA",
"email": "contact@prestashop.com"
}
],
"require": {
"php": "^8.0 || ^7.2",
"symfony/console": "^3.4 || ~4.0 || ~5.0 || ~6.0",
"symfony/finder": "^3.4 || ~4.0 || ~5.0 || ~6.0",
"nikic/php-parser": "^4.10"
},
"require-dev": {
"prestashop/php-dev-tools": "1.*",
"phpstan/phpstan": "^0.12.83"
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false,
"optimize-autoloader": true,
"platform": {
"php": "7.2"
}
},
"bin": ["bin/autoindex"],
"autoload": {
"psr-4": {
"PrestaShop\\AutoIndex\\": "src/"
}
}
}