-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
53 lines (53 loc) · 1.14 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
53
{
"name": "mergephp/mergephp-website",
"description": "The website for MergePHP",
"license": "MIT",
"authors": [
{
"name": "Tim Bond",
"email": "[email protected]",
"homepage": "https://www.tim-bond.com/"
}
],
"config": {
"platform": {
"php": "8.3"
}
},
"require": {
"ext-dom": "*",
"ext-mbstring": "*",
"ext-readline": "*",
"ext-simplexml": "*",
"league/commonmark": "^2.3",
"nette/php-generator": "^4.0.0",
"psr/log": "^3.0.0",
"squizlabs/php_codesniffer": "^3.9.1",
"symfony/console": "^6.1",
"twig/markdown-extra": "^3.4",
"twig/twig": "^3.0.0",
"lcobucci/clock": "^3.3"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.11",
"phpunit/phpunit": "^10.0.10"
},
"scripts": {
"build": "php console.php build",
"coverage": "phpunit --colors=always --testdox tests",
"fix-lint-errors": "phpcbf",
"generate": "php console.php generate",
"lint": "phpcs",
"serve": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8000 -t docs/"
],
"test": "phpunit --colors=always --testdox tests"
},
"autoload": {
"psr-4": {
"MergePHP\\Website\\": "src/",
"Tests\\": "tests/"
}
}
}