-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 980 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
37
38
39
40
41
{
"name": "nadar/prosemirror-json-parser",
"description": "A library that easily converts ProseMirror/TipTap JSON into customizable HTML elements.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Nadar\\ProseMirror\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nadar\\ProseMirror\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Nadar",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "8.1"
}
},
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10",
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^1.7",
"rector/rector": "^0.14.2"
},
"scripts": {
"phpstan": "vendor/bin/phpstan -v",
"phpcsfixer": "vendor/bin/php-cs-fixer fix",
"rector": "vendor/bin/rector"
}
}