-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
41 lines (41 loc) · 938 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
37
38
39
40
41
{
"name": "tivie/htaccess-parser",
"description": "A .htaccess parser and validator implemented in PHP",
"keywords": [".htaccess", "htaccess"],
"homepage": "https://github.com/tivie/php-htaccess-parser",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Estevão Soares dos Santos",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0.6"
},
"autoload": {
"psr-4": {
"Tivie\\HtaccessParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tivie\\HtaccessParser\\": "tests/"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"classmap-authoritative": true,
"apcu-autoloader": true,
"allow-plugins": {
"phpdocumentor/unified-asset-installer": true,
"symfony/flex": true
}
}
}