-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
44 lines (44 loc) · 1.26 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
{
"name": "storyblok/richtext-resolver",
"type": "library",
"license": "MIT",
"description": "A package allowing you to get an HTML string from the richtext field of Storyblok.",
"keywords": ["storyblok", "richtext", "text", "html", "render"],
"authors": [
{
"name": "Ademar Cardoso",
"email": "ac@storyblok.com"
}
],
"require": {
"php": ">=7.3.0"
},
"require-dev": {
"phpunit/phpunit": "^8|^9",
"friendsofphp/php-cs-fixer": "^3.4.0"
},
"autoload": {
"psr-4": {
"Storyblok\\RichtextRender\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Storyblok\\RichtextRender\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit tests --coverage-html ./coverage/",
"codestyle-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --allow-risky=yes --using-cache=no",
"codestyle-check": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run --using-cache=no",
"all-check": [
"@codestyle-fix",
"@test-coverage"
],
"all-check-ci": [
"@codestyle-check",
"@test"
]
}
}