generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
55 lines (55 loc) · 1.48 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
{
"name": "ueberdosis/tiptap-php",
"description": "A PHP package to work with Tiptap output",
"keywords": [
"ueberdosis",
"tiptap",
"prosemirror"
],
"homepage": "https://github.com/ueberdosis/tiptap-php",
"license": "MIT",
"authors": [
{
"name": "Hans Pagel",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"scrivo/highlight.php": "^9.18",
"spatie/shiki-php": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"pestphp/pest": "^1.21",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.3"
},
"autoload": {
"psr-4": {
"Tiptap\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tiptap\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"psalm-watch": "nodemon --exec './vendor/bin/psalm || exit 1' --ext php",
"test": "./vendor/bin/pest",
"test-watch": "nodemon --exec './vendor/bin/pest || exit 1' --ext php",
"test-coverage": "./vendor/bin/pest --coverage-html coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes --config=.php_cs.dist.php"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}