-
Notifications
You must be signed in to change notification settings - Fork 57
/
composer.json
62 lines (54 loc) · 1.54 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
61
62
{
"name": "pragmarx/tddd",
"description": "A Self-Hosted TDD Dashboard & Tests Watcher",
"keywords": [
"laravel", "ci", "continuous integration", "test",
"testing", "test-driven development", "tdd", "bdd",
"watcher", "phpunit", "dusk", "behat", "phpspec",
"codeception", "atoum", "tester"
],
"license": "MIT",
"authors": [
{
"name": "Antonio Carlos Ribeiro",
"email": "[email protected]",
"role": "Creator & Designer"
}
],
"require": {
"php": ">=7.0",
"laravel/framework": ">=5.5",
"pragmarx/support": "~0.8",
"sensiolabs/ansi-to-html": "~1",
"symfony/process": "~3",
"guzzlehttp/guzzle": "~6.3",
"jolicode/jolinotif": "~1.2",
"doctrine/dbal": "~2.5",
"symfony/yaml": "~3.2",
"pusher/pusher-php-server": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"orchestra/testbench": "~3.5"
},
"autoload": {
"psr-4": {
"PragmaRX\\Tddd\\Package\\": "src/package",
"PragmaRX\\Tddd\\Tests\\": "tests/"
},
"psr-0": {
"JasonLewis\\ResourceWatcher": "src/package/Support/jasonlewis/resource-watcher/src"
},
"files": [
"src/package/Support/helpers.php"
]
},
"extra": {
"component": "package",
"laravel": {
"providers": [
"PragmaRX\\Tddd\\Package\\ServiceProvider"
]
}
}
}