forked from eloquent/pathogen
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
34 lines (34 loc) · 862 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
{
"name": "mschop/pathogen",
"description": "General-purpose path library for PHP.",
"keywords": ["path", "filesystem", "file", "manipulation"],
"homepage": "https://github.com/mschop/pathogen",
"license": "MIT",
"authors": [
{
"name": "Martin Schophaus",
"email": "mschopdev@gmail.com",
"homepage": "https://mschop.de"
}
],
"require": {
"php": "^8.3",
"symfony/polyfill-mbstring": "*",
"mschop/simplified-isolator": "^0.1"
},
"require-dev": {
"ext-xdebug": "*",
"eloquent/liberator": "~3",
"phpunit/phpunit": "^11.2"
},
"autoload": {
"psr-4": {
"Pathogen\\": "src"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}