-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 860 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 860 Bytes
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
{
"name": "madewithlove/htaccess-cli",
"description": "CLI interface for the best htaccess tester in the world.",
"type": "package",
"require": {
"php": "^8.4",
"symfony/console": "^7.0 || ^8.0",
"http-interop/http-factory-guzzle": "^1.0",
"php-http/guzzle7-adapter": "^1.0",
"madewithlove/htaccess-api-client": "^3.0",
"symfony/yaml": "^7.0 || ^8.0"
},
"bin": [
"bin/htaccess"
],
"autoload": {
"psr-4": {"Madewithlove\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Madewithlove\\": "tests/"}
},
"license": "GPL-3.0-or-later",
"require-dev": {
"phpunit/phpunit": "^13.0",
"phpstan/phpstan": "^2.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}