-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
84 lines (84 loc) · 2.17 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "stakx/stakx",
"description": "Yet another static website generator powered by Symfony and Twig",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Vladimir Jimenez",
"homepage": "https://allejo.io",
"role": "Project Maintainer"
}
],
"autoload": {
"psr-4": {
"allejo\\stakx\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"allejo\\stakx\\Test\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-libxml": "*",
"erusev/parsedown": "^1.7.4",
"erusev/parsedown-extra": "^0.7.1",
"gregwar/rst": "^1.0",
"maciejczyzewski/bottomline": "^0.2.3",
"mikey179/vfsstream": "^1.6",
"psr/log": "^1.1.4",
"react/http": "^1.8.0",
"scrivo/highlight.php": "^9.18",
"scssphp/scssphp": "^1.11",
"symfony/config": "^5.4.0",
"symfony/console": "^5.4.0",
"symfony/dependency-injection": "^5.4.0",
"symfony/error-handler": "^5.4.0",
"symfony/event-dispatcher": "^5.4.0",
"symfony/filesystem": "^5.4.0",
"symfony/finder": "^5.4.0",
"symfony/routing": "^5.4.0",
"symfony/yaml": "^5.4.0",
"twig/twig": "^3.4"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest"
},
"bin": ["bin/stakx"],
"scripts": {
"post-install-cmd": ["@composer bin all install --ansi"],
"bin": "echo 'bin not installed'",
"build": [
"box compile",
"php -r \"file_put_contents('stakx.phar.version', sha1_file('stakx.phar'));\""
],
"coverage": "phpunit --coverage-clover coverage.clover",
"format": [
"php-cs-fixer fix $(if [ ! -z $CI ]; then echo \"--format=checkstyle\"; fi)"
],
"stan": [
"phpstan analyse -c phpstan.neon.dist $(if [ ! -z $CI ]; then echo \"--error-format=checkstyle\"; fi)"
],
"test": "phpunit"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"target-directory": "vendor-bin",
"forward-command": true
}
}
}