-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1012 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
{
"name": "huubverbeek/query-watcher",
"description": "A package to watch queries in your Laravel application -- including PHPUnit asserts.",
"type": "library",
"keywords": ["framework", "laravel", "query-watcher", "watcher", "queries", "testing"],
"license": "MIT",
"authors": [
{
"name": "Huub Verbeek",
"email": "verbeekwerk@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"HuubVerbeek\\QueryWatcher\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HuubVerbeek\\QueryWatcher\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-f": "vendor/bin/phpunit --filter",
"pint": "vendor/bin/pint",
"pint-t": "vendor/bin/pint --test"
},
"extra": {
"laravel": {
"providers": [
"HuubVerbeek\\QueryWatcher\\QueryWatcherServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.0",
"laravel/pint": "^1.2.1"
}
}