-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
63 lines (63 loc) · 1.7 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
63
{
"name": "avto-dev/static-references-laravel",
"description": "Static references for Laravel applications",
"keywords": [
"laravel",
"static",
"references"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Avto Develop",
"homepage": "https://github.com/avto-dev"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"avto-dev/static-references-data": "^3.0",
"illuminate/support": "~10.0 || ~11.0"
},
"require-dev": {
"laravel/laravel": "~10.0 || ~11.0",
"mockery/mockery": "^1.6.5",
"phpstan/phpstan": "^1.10.66",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"AvtoDev\\StaticReferences\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AvtoDev\\StaticReferences\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AvtoDev\\StaticReferences\\ServiceProvider"
]
}
},
"scripts": {
"phpunit": "@php ./vendor/bin/phpunit --no-coverage --colors=always",
"phpunit-cover": "@php ./vendor/bin/phpunit --coverage-html='./coverage/html'",
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"test": [
"@phpstan",
"@phpunit"
],
"test-cover": [
"@phpstan",
"@phpunit-cover"
]
},
"support": {
"issues": "https://github.com/avto-dev/static-references-laravel/issues",
"source": "https://github.com/avto-dev/static-references-laravel"
}
}