-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
36 lines (36 loc) · 934 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
{
"name": "prezly/draft-php",
"type": "library",
"description": "PHP implementation of Draft.js ContentState model to allow server-side handling of Draft.js produced content.",
"license": "MIT",
"authors": [
{
"name": "Ivan Voskoboinyk",
"email": "ivan.voskoboinyk@gmail.com"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.0",
"prezly/code-style": "^3.0"
},
"autoload": {
"psr-4": {
"Prezly\\DraftPhp\\": "./lib",
"Prezly\\DraftPhp\\Tests\\": "./tests"
}
},
"config": {
"sort-packages": true,
"preferred-install": {
"phpunit/phpunit": "dist"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}