-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 964 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
41
42
43
44
45
46
47
{
"name": "romegasoftware/nova-test-suite",
"description": "Library to help testing laravel nova resources faster",
"type": "package",
"license": "MIT",
"keywords": [
"laravel"
],
"authors": [
{
"name": "Braden Keith",
"email": "[email protected]"
},
{
"name": "Krishan Koenig",
"email": "[email protected]"
}
],
"require": {
"php": "*",
"ext-json": "*",
"illuminate/support": "*",
"illuminate/filesystem": "*",
"illuminate/testing": "*",
"illuminate/contracts": "*"
},
"autoload": {
"psr-4": {
"RomegaSoftware\\NovaTestSuite\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"RomegaSoftware\\NovaTestSuite\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"RomegaSoftware\\NovaTestSuite\\NovaTestSuiteServiceProvider"
]
}
}
}