forked from UnicornGlobal/lumen-testbench-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.9 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
{
"name": "unicorn/lumen-testbench-core",
"description": "Lumen fork of orchestra/testbench-core - Testing Helper for Lumen Development",
"homepage": "http://orchestraplatform.com/docs/latest/components/testbench/",
"keywords": ["laravel", "orchestral", "orchestra-platform", "testing", "tdd", "bdd"],
"license": "MIT",
"support": {
"issues": "https://github.com/orchestral/testbench/issues",
"source": "https://github.com/orchestral/testbench-core"
},
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Lumen\\Testbench\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lumen\\Testbench\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3",
"fzaninotto/faker": "^1.9.1"
},
"require-dev": {
"laravel/lumen-framework": "^8.0",
"laravel/lumen": "^8.0",
"mockery/mockery": "^1.3.1",
"orchestra/canvas": "^6.0",
"phpunit/phpunit": "^8.4 || ^9.0",
"unicorn/lumen-testing": "dev-master"
},
"suggest": {
"laravel/lumen-framework": "Required for testing (^7.0).",
"mockery/mockery": "Allow using Mockery for testing (^1.3.1).",
"orchestra/testbench-browser-kit": "Allow using legacy Laravel BrowserKit for testing (^5.0).",
"orchestra/testbench-dusk": "Allow using Laravel Dusk for testing (^5.0).",
"phpunit/phpunit": "Allow using PHPUnit for testing (^8.4 || ^9.0)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"no-api": true,
"url": "[email protected]:julie-grace/lumen-testing.git"
}
]
}