generated from owenvoke/skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (58 loc) · 1.53 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
{
"name": "owenvoke/blade-entypo",
"type": "library",
"description": "A package to easily make use of Entypo in your Laravel Blade views",
"license": "MIT",
"require": {
"php": "^8.1",
"blade-ui-kit/blade-icons": "^1.5",
"illuminate/support": "^10.0|^11.0",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"laravel/pint": "^1.15",
"orchestra/testbench": "^8.5|^9.0",
"pestphp/pest": "^2.34",
"phpstan/phpstan": "^1.10",
"symfony/var-dumper": "^6.4|^7.0",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"autoload": {
"psr-4": {
"OwenVoke\\BladeEntypo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OwenVoke\\BladeEntypo\\Tests\\": "tests/"
}
},
"scripts": {
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "pest --colors=always",
"test": [
"@test:types",
"@test:unit"
],
"update:snapshots": "pest -d --update-snapshots",
"update:icons": [
"npm install",
"./vendor/bin/blade-icons-generate"
]
},
"extra": {
"laravel": {
"providers": [
"OwenVoke\\BladeEntypo\\BladeEntypoServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}