-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.11 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 2.11 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
58
59
60
61
62
63
64
65
66
67
{
"name": "itools/smartstring",
"description": "XSS-safe strings for PHP templates: values HTML-encode themselves on echo, interpolation, and concatenation, at least 3x faster than calling htmlspecialchars() yourself",
"keywords": ["SmartArray", "chainable", "encoding", "escape", "fluent", "format", "html", "json", "manipulation", "methods", "multibyte", "sanitize", "security", "string", "strip", "trim", "truncate", "urlencode", "utf", "utf8", "xss"],
"type": "library",
"homepage": "https://github.com/interactivetools-com/SmartString",
"license": "MIT",
"readme": "README.md",
"support": {
"issues": "https://github.com/interactivetools-com/SmartString/issues",
"source": "https://github.com/interactivetools-com/SmartString"
},
"authors": [
{
"name": "interactivetools.com",
"homepage": "https://interactivetools.com/"
}
],
"repositories": [
{"type": "path", "url": "../SmartArray", "options": {"symlink": true}}
],
"autoload": {
"psr-4": {
"Itools\\SmartString\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Itools\\SmartString\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "8.1"
}
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-mbstring": "*"
},
"require-dev": {
"itools/smartarray": "^3.0",
"jetbrains/phpstorm-attributes": "^1.2",
"phpunit/phpunit": "^10.5"
},
"suggest": {
"itools/smartarray": "Enhanced arrays with automatic HTML encoding and chainable collection methods"
},
"scripts": {
"test": "phpunit",
"coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-text"
]
},
"scripts-descriptions": {
"test": "Run the test suite",
"coverage": "Run the test suite with a line-coverage report (requires Xdebug)"
}
}