-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.69 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.69 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
{
"name": "superrosko/php-text-decorators",
"description": "Collection of php text decorators",
"homepage": "https://github.com/superrosko/php-text-decorators",
"license": "MIT",
"version": "0.0.16",
"authors": [
{
"name": "Dmitriy Bespalov",
"email": "dbespalov.rosko@gmail.com",
"homepage": "https://rdevelab.ru",
"role": "Developer"
}
],
"keywords": [
"text",
"decorators"
],
"autoload": {
"psr-4": {
"Superrosko\\PhpTextDecorators\\": "src/"
}
},
"require": {
"php": ">=7.4",
"scrivo/highlight.php": "^v9.18",
"ext-json": "*"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.3",
"erusev/parsedown-extra": "^0.8.1",
"fakerphp/faker": "^1.12",
"friendsofphp/php-cs-fixer": "^2.17",
"psalm/plugin-phpunit": "^0.14",
"vimeo/psalm": "^4.3.1"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"check-style": "set PHP_CS_FIXER_IGNORE_ENV=1 && php-cs-fixer fix --dry-run --diff",
"fix-style": "set PHP_CS_FIXER_IGNORE_ENV=1 && php-cs-fixer fix",
"static-analysis": "psalm --shepherd --stats",
"test": "codecept run",
"coverage-html": "codecept run --coverage --coverage-html",
"coverage-xml": "codecept run --coverage --coverage-xml",
"codecov-push": "bash -c \"bash <(curl -s https://codecov.io/bash)\""
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}