-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.62 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.62 KB
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
{
"name": "imanghafoori/laravel-microscope",
"description": "Automatically test your laravel application",
"keywords": [
"laravel-testing",
"laravel-microscope"
],
"homepage": "https://github.com/imanghafoori1/laravel-microscope",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Iman",
"email": "imanghafoori1@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4|8.0.*|8.1.*|8.2.*|8.3.*|8.4.*|8.5.*",
"imanghafoori/composer-json": "^2.1.0",
"composer/class-map-generator": "^1.0.0",
"imanghafoori/php-abstract-filesystem": "^0.1.6",
"imanghafoori/php-search-replace": "^1.1.16",
"imanghafoori/php-token-analyzer": "^0.1.90",
"imanghafoori/php-imports-analyzer": "^1.1.0",
"imanghafoori/smart-realtime-facades": "^1.1.9",
"jetbrains/phpstorm-attributes": "1.*",
"laravel/framework": "6.*|7.*|8.*|9.*|10.*|11.*|12.*"
},
"require-dev": {
"phpunit/phpunit": ">=10.0.0"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Imanghafoori\\LaravelMicroscope\\": "src"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Imanghafoori\\LaravelMicroscope\\LaravelMicroscopeServiceProvider"
]
}
},
"bin": ["microscope"]
}