-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 990 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
{
"name": "trendyminds/statamic-palette",
"description": "Palette allows you to easily jump between areas, entries, assets, and users within Statamic without lifting your hands off the keyboard!",
"version": "1.2.1",
"require": {
"php": "^8.2",
"statamic/cms": "^4.0|^5.0"
},
"autoload": {
"psr-4": {
"Trendyminds\\Palette\\": "src"
}
},
"extra": {
"statamic": {
"name": "Palette",
"description": "A command palette to jump to specific areas within Statamic"
},
"laravel": {
"providers": [
"Trendyminds\\Palette\\ServiceProvider"
]
}
},
"require-dev": {
"laravel/pint": "^1.14"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}