forked from stefangalescu/statamic-heroicons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.33 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
{
"name": "starfolksoftware/statamic-heroicons",
"description": "Use and easily customize Heroicons in your Statamic templates",
"license": "MIT",
"autoload": {
"psr-4": {
"StatamicHeroicons\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"StatamicHeroicons\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "statamic-heroicons",
"description": ""
},
"laravel": {
"providers": [
"StatamicHeroicons\\ServiceProvider"
]
}
},
"require": {
"php": "^8.1 || ^8.2 || ^8.3",
"blade-ui-kit/blade-heroicons": "^2.3",
"statamic/cms": "^3.4 || ^4 || ^5"
},
"require-dev": {
"laravel/pint": "^1.15",
"nunomaduro/collision": "^4.2 || ^5.0 || ^6.1 || ^8.1",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0"
},
"scripts": {
"lint": [
"./vendor/bin/pint"
],
"test": [
"php -d memory_limit=-1 -d max_execution_time=0 ./vendor/bin/phpunit"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}