forked from heidkaemper/statamic-toolbar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.35 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.35 KB
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
{
"name": "heidkaemper/statamic-toolbar",
"license": "MIT",
"type": "statamic-addon",
"description": "A Statamic CMS frontend helper",
"require": {
"statamic/cms": "3.3.* || 3.4.* || ^4.0",
"mck89/peast": "^1.15"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.22"
},
"autoload": {
"psr-4": {
"Heidkaemper\\Toolbar\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Heidkaemper\\Toolbar\\Tests\\": "tests"
}
},
"scripts": {
"phpcs": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run --verbose --diff",
"phpcs:fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes",
"test": "vendor/bin/pest"
},
"extra": {
"statamic": {
"name": "Statamic Toolbar",
"description": "A toolbar for your Statamic frontend"
},
"laravel": {
"providers": [
"Heidkaemper\\Toolbar\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}