-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 992 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
48
{
"name": "unicon-rocks/unicon-laravel",
"description": "Universal icon component for Laravel",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Unicon\\": "src/"
},
"files": ["src/functions.php"]
},
"authors": [
{
"name": "Nicolas Hedger",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"illuminate/console": "^11|^10",
"illuminate/support": "^11|^10",
"guzzlehttp/guzzle": "^7"
},
"require-dev": {
"orchestra/testbench": "^8 || ^9",
"laravel/pint": "^1.18",
"phpunit/phpunit": "^11 || ^10"
},
"autoload-dev": {
"psr-4": {
"Unicon\\Test\\": "test/"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"lint": ["@php vendor/bin/phpstan analyse --verbose --ansi"],
"format": "@php vendor/bin/pint --repair"
},
"extra": {
"laravel": {
"providers": ["Unicon\\IconServiceProvider"],
"aliases": {
"Icon": "Unicon\\Facades\\Icon"
}
}
}
}