forked from sculpin/sculpin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 3.01 KB
/
Copy pathcomposer.json
File metadata and controls
91 lines (91 loc) · 3.01 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "sculpin/sculpin",
"description": "Static Site Generator",
"homepage": "https://sculpin.io",
"keywords": ["static", "site", "generator"],
"license": "MIT",
"authors": [
{
"name": "Dragonfly Development Inc.",
"email": "info@dflydev.com",
"homepage": "http://dflydev.com"
},
{
"name": "Beau Simensen",
"email": "beau@dflydev.com",
"homepage": "http://beausimensen.com"
}
],
"require": {
"php": "^8.0 || ^7.3",
"ext-mbstring": "*",
"dflydev/ant-path-matcher": "^1.0.3",
"dflydev/apache-mime-types": "^1.0.1",
"dflydev/canal": "^1.0",
"dflydev/dot-access-configuration": "^1.0.3",
"doctrine/inflector": "^1.3",
"michelf/php-markdown": "^1.9",
"netcarver/textile": "^3.6",
"react/http": "^1.0",
"sculpin/sculpin-theme-composer-plugin": "^1.0",
"symfony/config": "^4.4.13",
"symfony/console": "^4.4.13",
"symfony/dependency-injection": "^4.4.13",
"symfony/event-dispatcher": "^4.4.13",
"symfony/filesystem": "^4.4.13",
"symfony/finder": "^4.4.13",
"symfony/http-kernel": "^4.4.13",
"symfony/yaml": "^4.4.13",
"twig/extensions": "^1.5",
"twig/twig": "^2.5",
"webignition/internet-media-type": "^0.4.8"
},
"require-dev": {
"phpdocumentor/reflection-docblock": "^5.2",
"phpstan/phpstan": "^0.12.57",
"phpunit/phpunit": "^9.4",
"squizlabs/php_codesniffer": "^3.3",
"symfony/css-selector": "^4.1",
"symfony/dom-crawler": "^4.1",
"symfony/process": "^4.1"
},
"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"
}
}