-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.57 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
{
"name": "interaction-design-foundation/nova-html-code-field",
"description": "A Laravel Nova field to write raw HTML and preview.",
"license": "MIT",
"keywords": [
"laravel",
"nova",
"laravel-nova-field",
"html"
],
"require": {
"php": "^8.2",
"ext-json": "*",
"laravel/nova": "^4.25 || ^5.0"
},
"require-dev": {
"interaction-design-foundation/coding-standard": "^0.3.0",
"orchestra/testbench-core": "^8.0 || ^9.0",
"phpunit/phpunit": "^10.5 || ^11.0"
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"InteractionDesignFoundation\\NovaHtmlCodeField\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InteractionDesignFoundation\\NovaHtmlCodeField\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"thecodingmachine/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"InteractionDesignFoundation\\NovaHtmlCodeField\\ServiceProvider"
]
}
},
"scripts": {
"cs": "@cs:fix",
"cs:check": "phpcs -p -s --colors --report-full --report-summary",
"cs:fix": "phpcbf -p --colors",
"test": "phpunit --colors=always"
}
}