-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 1.06 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
{
"name": "genius257/view",
"description": "Inspired by the JSX format, this solution allows you to define components and render the resulting HTML.",
"license": "MIT",
"support": {
"issues": "https://github.com/genius257/view/issues",
"source": "https://github.com/genius257/view"
},
"authors": [
{
"name": "Anders Pedersen",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"paquettg/php-html-parser": "~3.1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.9",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Genius257\\View\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "example/app/",
"Tests\\": "tests/"
}
},
"scripts": {
"phpunit-coverage": "XDEBUG_MODE=coverage phpunit --coverage-text",
"phpunit-coverage-html": "XDEBUG_MODE=coverage phpunit --coverage-html=coverage"
}
}