-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
61 lines (61 loc) · 1.56 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
{
"name": "ryangjchandler/blade-tabler-icons",
"description": "A package to easily make use of Tabler icons in your Laravel Blade views.",
"keywords": [
"Blade",
"Tabler",
"Laravel"
],
"homepage": "https://github.com/ryangjchandler/blade-tabler-icons",
"license": "MIT",
"authors": [
{
"name": "Ryan Chandler",
"email": "support@ryangjchandler.co.uk",
"homepage": "https://ryangjchandler.co.uk",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"blade-ui-kit/blade-icons": "^1.5",
"illuminate/support": "^10.0 || ^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"orchestra/testbench": "^8.0 || ^9.0",
"phpunit/phpunit": "^9.5.10 || ^10.5"
},
"autoload": {
"psr-4": {
"RyanChandler\\TablerIcons\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"RyanChandler\\TablerIcons\\BladeTablerIconsServiceProvider"
]
}
},
"scripts": {
"format": [
"vendor/bin/php-cs-fixer fix"
],
"update-icons": [
"npm install",
"./bin/compile.sh ./node_modules/@tabler/icons/icons"
],
"test": "vendor/bin/phpunit --colors=always"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}