-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 838 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 838 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
33
34
35
36
37
{
"name": "junty/junty",
"description": "Streams handling with tasks for PHP 7.",
"license": "MIT",
"authors": [
{
"name": "GabrielJMJ",
"homepage": "http://github.com/gabrieljmj"
}
],
"autoload": {
"psr-4": {
"Junty\\": "src/Junty/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Junty\\": "tests/Junty/"
}
},
"require": {
"php": ">=7.0",
"guzzlehttp/psr7": "^1.2",
"junty/junty-taskrunner": "^0.2",
"junty/junty-plugin": "^0.1",
"junty/junty-todir": "^0.1",
"doctrine/collections": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^5.2"
},
"bin": [
"bin/junty"
],
"minimum-stability": "dev",
"prefer-stable": true
}