-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
91 lines (91 loc) · 2.75 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "black-sheep-tech/laravel-ui-avatars",
"description": "A simple service provider/wrapper for the UI Avatars API (https://ui-avatars.com).",
"keywords": ["laravel", "ui-avatars"],
"homepage": "https://github.com/BlackSheepTech/ui-avatars",
"license": "MIT",
"support": {
"issues": "https://github.com/BlackSheepTech/ui-avatars/issues",
"source": "https://github.com/BlackSheepTech/ui-avatars"
},
"authors": [
{
"name": "Israel Pinheiro",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/config": "^10.48.4|^11.0.8",
"illuminate/console": "^10.48.4|^11.0.8",
"illuminate/contracts": "^10.48.4|^11.0.8",
"illuminate/http": "^10.48.4|^11.0.8",
"illuminate/support": "^10.48.4|^11.0.8",
"symfony/console": "^6.0|^7.0"
},
"require-dev": {
"laravel/pint": "^1.17",
"larastan/larastan": "^2.9",
"pestphp/pest": "^2.35",
"pestphp/pest-plugin-laravel": "^2.4",
"nunomaduro/phpinsights": "^2.11",
"pestphp/pest-plugin-type-coverage": "^2.8",
"pestphp/pest-plugin-stressless": "^2.2"
},
"autoload": {
"psr-4": {
"BlackSheepTech\\UiAvatars\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"BlackSheepTech\\UiAvatars\\UiAvatarsServiceProvider"
]
}
},
"scripts": {
"insights":[
"./vendor/bin/phpinsights -v"
],
"insights-fix":[
"./vendor/bin/phpinsights -v --fix"
],
"analyse":[
"./vendor/bin/phpstan analyse --memory-limit=2G"
],
"analyse-strict":[
"./vendor/bin/phpstan analyse --memory-limit=2G --level=9"
],
"fix":[
"./vendor/bin/pint"
],
"lint": [
"./vendor/bin/pint --test"
],
"test": [
"./vendor/bin/pest --parallel --stop-on-failure"
],
"test-coverage": [
"./vendor/bin/pest --coverage --min=80"
],
"type-coverage": [
"./vendor/bin/pest --type-coverage --min=80"
],
"ci": [
"./vendor/bin/pest --coverage --min=80",
"./vendor/bin/pest --coverage --min=80",
"./vendor/bin/pint --test",
"./vendor/bin/phpstan analyse --memory-limit=2G",
"./vendor/bin/pest --parallel --stop-on-failure"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}