forked from sculpin/sculpin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (96 loc) · 3.12 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "sculpin/sculpin",
"description": "Static Site Generator",
"homepage": "https://sculpin.io",
"keywords": ["static", "site", "generator"],
"license": "MIT",
"authors": [
{
"name": "Dragonfly Development Inc.",
"email": "[email protected]",
"homepage": "http://dflydev.com"
},
{
"name": "Beau Simensen",
"email": "[email protected]",
"homepage": "http://beausimensen.com"
}
],
"require": {
"php": "^8.0 || ^7.4",
"ext-mbstring": "*",
"ext-fileinfo": "*",
"dflydev/ant-path-matcher": "^1.0.3",
"dflydev/apache-mime-types": "^1.0.1",
"dflydev/dot-access-configuration": "^1.0.3",
"doctrine/inflector": "^1.3",
"league/mime-type-detection": "^1.13.0",
"michelf/php-markdown": "^1.9",
"netcarver/textile": "^3.6",
"react/http": "^1.0",
"sculpin/sculpin-theme-composer-plugin": "^1.0",
"symfony/config": "^v5.4",
"symfony/console": "^v5.4",
"symfony/dependency-injection": "^v5.4",
"symfony/event-dispatcher": "^v5.4",
"symfony/filesystem": "^v5.4",
"symfony/finder": "^v5.4",
"symfony/http-kernel": "^v5.4",
"symfony/yaml": "^v5.4",
"twig/twig": "^3.0",
"webignition/internet-media-type": "^0.4.8"
},
"require-dev": {
"phpdocumentor/reflection-docblock": "^5.2",
"phpunit/phpunit": "^9.4",
"squizlabs/php_codesniffer": "^3.3",
"symfony/css-selector": "^v5.4",
"symfony/dom-crawler": "^v5.4",
"symfony/process": "^v5.4",
"phpstan/phpstan": "^1.2"
},
"suggest": {
"ext-iconv": "To convert non-UTF-8 strings to UTF-8.",
"ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
},
"replace": {
"sculpin/core": "self.version",
"sculpin/markdown-bundle": "self.version",
"sculpin/markdown-twig-compat-bundle": "self.version",
"sculpin/posts-bundle": "self.version",
"sculpin/proxy-source-collection-contrib": "self.version",
"sculpin/sculpin-bundle": "self.version",
"sculpin/standalone-bundle": "self.version",
"sculpin/taxonomy-contrib": "self.version",
"sculpin/textile-bundle": "self.version",
"sculpin/twig-bundle": "self.version"
},
"autoload": {
"psr-4": {
"Sculpin\\": "src/Sculpin/"
}
},
"bin": ["bin/sculpin", "bin/sculpin.php"],
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"scripts": {
"check": [
"@cs-check",
"@phpstan",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse -l 4 src/",
"test": "phpunit --colors=always",
"test-coverage": "phpdbg -qrr vendor/bin/phpunit --coverage-clover clover.xml --coverage-text --colors=always"
},
"config": {
"allow-plugins": {
"sculpin/sculpin-theme-composer-plugin": true
}
}
}