-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathcomposer.json
45 lines (45 loc) · 1.01 KB
/
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
42
43
44
45
{
"name": "teqneers/php-stream-wrapper-for-git",
"description": "Git Stream Wrapper for PHP",
"keywords": [
"git",
"streamwrapper",
"stream-wrapper"
],
"homepage": "https://github.com/teqneers/PHP-Stream-Wrapper-for-Git",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Stefan Gehrig",
"email": "gehrig@teqneers.de",
"homepage": "http://opensource.teqneers.de/"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "~9.6",
"knplabs/gaufrette": "~0.11",
"symfony/yaml": "^3.4|^4.0|^5.0|^6.0"
},
"suggest": {
"knplabs/gaufrette": "to use the Gaufrette adapter"
},
"autoload": {
"psr-4": {
"TQ\\": "src/TQ"
}
},
"autoload-dev": {
"psr-4": {
"TQ\\": "tests/TQ"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}