-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
52 lines (52 loc) · 1.48 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "qiq/qiq",
"type": "library",
"description": "Provides a TemplateView implementations using PHP itself as the templating language, and an optional lightweight template markup.",
"keywords": [
"escape",
"escaper",
"escaping",
"template",
"template view",
"view"
],
"homepage": "https://github.com/qiqphp/qiq",
"license": "MIT",
"authors": [
{
"name": "Qiq Contributors",
"homepage": "https://github.com/qiqphp/qiq/contributors"
}
],
"require": {
"php": "^8.1 | ^8.2 | ^8.3",
"laminas/laminas-escaper": "^2.0",
"psr/container": "^2.0"
},
"autoload": {
"psr-4": {
"Qiq\\": "src/"
}
},
"require-dev": {
"pds/composer-script-names": "^1.0",
"pds/skeleton": "^1.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^10.0",
"pmjones/php-styler": "0.x-dev",
"symfony/finder": "^6.3"
},
"autoload-dev": {
"psr-4": {
"Qiq\\": "tests/"
}
},
"scripts": {
"analyze": "./vendor/bin/phpstan analyze -c phpstan.neon",
"check": "composer test && composer analyze && composer cs-check",
"cs-check": "./vendor/bin/php-styler check",
"cs-fix": "./vendor/bin/php-styler apply",
"test": "./vendor/bin/phpunit",
"test-coverage": "./vendor/bin/phpunit --coverage-html=./tmp/coverage"
}
}