-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) 路 2.06 KB
/
Copy pathcomposer.json
File metadata and controls
73 lines (73 loc) 路 2.06 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "interaction-design-foundation/nova-unlayer-field",
"description": "A Laravel Nova field for Unlayer to compose emails and landing pages.",
"license": "MIT",
"keywords": [
"laravel",
"nova",
"laravel-nova-field",
"html"
],
"require": {
"php": "^8.4",
"ext-json": "*",
"laravel/nova": "^4.20 || ^5.0"
},
"require-dev": {
"interaction-design-foundation/coding-standard": "^1.0-RC1",
"interaction-design-foundation/psalm-laravel-nova": "^0.1",
"orchestra/testbench-core": "^10.0.2 || ^11.0",
"phpunit/phpunit": "^12.4",
"psalm/plugin-laravel": "^4.14",
"vimeo/psalm": "^7.0.0-beta19"
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com",
"only": [
"laravel/nova"
]
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"InteractionDesignFoundation\\NovaUnlayerField\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InteractionDesignFoundation\\NovaUnlayerField\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"InteractionDesignFoundation\\NovaUnlayerField\\ServiceProvider"
]
}
},
"scripts": {
"cs": [
"@php-cs-fixer",
"@phpcbf"
],
"php-cs-fixer": "php-cs-fixer fix --no-interaction --ansi --quiet",
"phpcbf": "phpcbf -p",
"phpcs": "phpcs -p -s --report-full --report-summary",
"psalm": "vendor/bin/psalm",
"psalm:bl": "vendor/bin/psalm --set-baseline=psalm-baseline.xml",
"sa": "@psalm",
"sa:bl": "@psalm:bl",
"test": "phpunit --colors=always"
}
}