-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.79 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.79 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
65
66
67
68
{
"name": "josbeir/glaze",
"description": "A sweet static site generaror for PHP",
"type": "project",
"bin": [
"bin/glaze"
],
"require": {
"josbeir/sugar": "^0.6",
"cakephp/chronos": "^3.3",
"cakephp/console": "^5.3",
"cakephp/http": "^5.3",
"league/glide": "^3.0",
"nette/neon": "^3.4",
"nikic/php-parser": "^5.7",
"phiki/phiki": "^2.1",
"php-collective/djot": "^0.1.15",
"php": ">=8.2",
"symfony/process": "^7.3"
},
"require-dev": {
"phpunit/phpunit": "^11.1.3 || ^12.0 || ^13.0",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.3",
"cakephp/cakephp-codesniffer": "^5.3"
},
"license": "MIT",
"keywords": [
"php",
"static-site-generator",
"djot",
"templating",
"glide"
],
"autoload": {
"psr-4": {
"Glaze\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Glaze\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Jasper Smet",
"email": "josbeir@gmail.com"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "export XDEBUG_MODE=coverage; phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml",
"phpstan": "phpstan analyse",
"cs-check": "phpcs --colors -p -s",
"cs-fix": "phpcbf --colors -p -s",
"rector-check": "rector --dry-run --ansi",
"rector-fix": "rector --ansi"
}
}