-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 949 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
36
37
38
39
40
{
"name": "xantios/maple",
"description": "A TaskRunner with the sweet taste of Maple",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Xantios Krugor",
"email": "git@xantios.nl"
}
],
"bin": ["maple"],
"require": {
"react/child-process": "^0.6.1",
"symfony/console": "^5.2",
"react/http": "^1.2.0",
"illuminate/collections": "^8.22",
"ext-pcntl": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"symfony/var-dumper": "^5.2",
"vimeo/psalm": "^4.4",
"phpunit/phpunit": "^9",
"sempro/phpunit-pretty-print": "^1.4"
},
"autoload": {
"psr-4": {
"Xantios\\Maple\\": "src/"
}
},
"scripts": {
"test": "phpunit -c phpunit.xml"
},
"config": {
"platform": {
"php": "8.0"
}
}
}