-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
35 lines (35 loc) · 937 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
{
"name": "matthiasmullie/path-converter",
"type": "library",
"description": "Relative path converter",
"keywords": ["relative", "path", "converter", "paths"],
"homepage": "https://github.com/matthiasmullie/path-converter",
"license": "MIT",
"authors": [
{
"name": "Matthias Mullie",
"homepage": "https://www.mullie.eu",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"ext-pcre": "*"
},
"require-dev": {
"phpunit/phpunit": ">=4.8",
"friendsofphp/php-cs-fixer": ">=2.0",
"squizlabs/php_codesniffer": ">=3.0"
},
"autoload": {
"psr-4": {
"MatthiasMullie\\PathConverter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MatthiasMullie\\PathConverter\\Tests\\": "tests/"
}
}
}