-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.99 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.99 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
{
"name": "itools/smartarray",
"description": "XSS-safe collections for PHP templates: database rows with fields that HTML-encode themselves, plus chainable filtering, sorting, and grouping",
"keywords": ["php", "array", "arrays", "collection", "database-rows", "chainable", "fluent", "html", "html-encoding", "escape", "sanitize", "xss", "security", "template", "filter", "where", "sort", "groupby", "indexby", "column", "smartstring"],
"type": "library",
"homepage": "https://github.com/interactivetools-com/SmartArray",
"license": "MIT",
"readme": "README.md",
"support": {
"issues": "https://github.com/interactivetools-com/SmartArray/issues",
"source": "https://github.com/interactivetools-com/SmartArray"
},
"authors": [
{
"name": "interactivetools.com",
"homepage": "https://interactivetools.com/"
}
],
"repositories": [
{"type": "path", "url": "../SmartString", "options": {"symlink": true}}
],
"autoload": {
"psr-4": {
"Itools\\SmartArray\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Itools\\SmartArray\\Tests\\": "tests/",
"Itools\\Standards\\": "tests/Integration/"
}
},
"config": {
"platform": {
"php": "8.1"
}
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"itools/smartstring": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"jetbrains/phpstorm-attributes": "^1.2"
},
"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)"
}
}