-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "icehawk/pubsub",
"description": "Publish subscribe component for IceHawk framework",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "hollodotme"
}
],
"support": {
"source": "https://github.com/icehawk/pub-sub"
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"ext-json": "*",
"tm/tooly-composer-script": "^1.0"
},
"autoload": {
"psr-4": {
"IceHawk\\PubSub\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IceHawk\\PubSub\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": "Tooly\\ScriptHandler::installPharTools",
"post-update-cmd": "Tooly\\ScriptHandler::installPharTools"
},
"extra": {
"tools": {
"phpunit": {
"url": "https://phar.phpunit.de/phpunit-7.phar",
"only-dev": true
},
"phpmetrics": {
"url": "https://github.com/phpmetrics/PhpMetrics/releases/download/v2.4.1/phpmetrics.phar",
"only-dev": true
},
"phpdox": {
"url": "https://github.com/theseer/phpdox/releases/download/0.11.2/phpdox-0.11.2.phar",
"only-dev": true
},
"coveralls": {
"url": "https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar",
"only-dev": true
},
"phpstan": {
"url": "https://github.com/phpstan/phpstan/releases/download/0.10.5/phpstan.phar",
"only-dev": true
}
}
}
}