-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.03 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
{
"name": "jakubboucek/legacy-escape",
"description": "Right escape data inserted to HTML, CSS, JS and URL. Substrate of Latte/Latte package.",
"license": [
"MIT",
"BSD-3-Clause",
"GPL-2.0-only",
"GPL-3.0-only"
],
"type": "library",
"authors": [
{
"name": "Jakub Bouček",
"email": "[email protected]"
}
],
"require": {
"php": "~7.2 || ~8.0",
"ext-json": "*"
},
"require-dev": {
"nette/tester": "^2.4 || ^2.5 || dev-master",
"nette/utils": "^3.1 || ^4.0",
"phpstan/phpstan": "1.12.6"
},
"suggest": {
"nette/utils": "Allows to safe escape HTML with markup: https://doc.nette.org/en/utils/html-elements"
},
"autoload": {
"psr-4": {
"JakubBoucek\\Escape\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpstan": "phpstan analyze src -c phpstan.neon --level 7",
"tester": "tester tests"
}
}