-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 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
{
"name": "komex/unteist",
"description": "Unit test framework",
"keywords": [
"testing", "test", "unit test", "phpunit", "framework"
],
"license": "CC-BY-SA-3.0",
"type": "library",
"authors": [
{
"name": "Andrey Kolchenko",
"email": "andrey@kolchenko.me",
"role": "Developer"
}
],
"support": {
"email": "andrey@kolchenko.me",
"source": "https://github.com/komex/unteist",
"issues": "https://github.com/komex/unteist/issues"
},
"require": {
"php": ">=5.4.0",
"ext-SPL": "*",
"ext-Reflection": "*",
"symfony/yaml": "~2.4",
"symfony/finder": "~2.4",
"symfony/config": "~2.4",
"symfony/console": "~2.4",
"symfony/filesystem": "~2.4",
"symfony/event-dispatcher": "~2.4",
"symfony/dependency-injection": "~2.4",
"monolog/monolog": "~1.7",
"sebastian/diff": "~1.1",
"twig/twig": "~1.15"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"komex/influence": "dev-develop"
},
"suggest": {
"ext-pcntl": "Required for run in separate processes.",
"ext-sysvmsg": "Required for run in separate processes.",
"ext-posix": "The posix PHP extension",
"ext-sockets": "The sockets PHP extension"
},
"autoload": {
"psr-0": {
"Unteist": "src"
}
},
"bin": [
"bin/unteist"
]
}