-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.54 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.54 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
{
"name": "bypassflow/text",
"description": "文字列表現、文脈別 escape、表示向けオブジェクト契約を束ねる text 基盤。",
"type": "library",
"homepage": "https://ickx.jp",
"license": "MIT",
"authors": [
{
"name": "akira wakaba",
"homepage": "https://ickx.jp",
"role": "lead developer"
}
],
"config": {
"autoloader-suffix": "bypassflow_text",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"bypassflow\\Text\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"bypassflow\\Text\\tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit -c tests/phpunit.xml",
"analyse": "vendor/bin/phpstan analyse --configuration=phpstan.neon.dist --memory-limit=1G",
"style:check": "php tools/php/check-line-break-style.php src tests",
"cs:fix": [
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"@style:check"
],
"cs:check": [
"@style:check",
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run --diff"
]
},
"keywords": [
"bypassflow",
"text",
"escaping"
],
"require": {
"php": ">=8.5.0"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"friendsofphp/php-cs-fixer": "^3.68",
"phpstan/phpstan": "^2.1"
}
}