-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
90 lines (90 loc) · 2.97 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
{
"name": "getherbie/herbie",
"homepage": "https://herbie.tebe.ch/",
"description": "Herbie is a simple, modern, fast and highly customizable flat-file Content Management System (CMS) powered by PHP, Twig, Markdown, Textile, reStructuredText and other human-readable text files.",
"keywords": [
"herbie",
"flat-file",
"cms",
"blog"
],
"type": "library",
"license": "BSD-3-Clause",
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"codeception/c3": true
}
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"composer-runtime-api": "^2.0",
"ausi/slug-generator": "^1.1",
"imagine/imagine": "^1.3",
"psr/container": "^1.1",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.1",
"psr/simple-cache": "^1.0",
"symfony/console": "^5.0",
"symfony/finder": "5.4",
"symfony/yaml": "^5.4",
"twig/twig": "^3.4"
},
"autoload": {
"psr-4": {
"herbie\\": "system",
"herbie\\sysplugins\\": "plugins"
},
"files": [
"system/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"herbie\\website\\site\\": "website/site",
"herbie\\tests\\": "tests"
}
},
"require-dev": {
"codeception/c3": "^2.7",
"codeception/codeception": "^4.2",
"codeception/module-asserts": "^1.0.0",
"codeception/module-phpbrowser": "^1.0.0",
"doctrine/rst-parser": "^0.5.2",
"erusev/parsedown": "^1.7",
"erusev/parsedown-extra": "^0.8.1",
"friendsofphp/php-cs-fixer": "^3.11",
"getherbie/plugin-simplecontact": "dev-master",
"getherbie/plugin-simplesearch": "dev-master",
"guzzlehttp/psr7": "^2.4",
"laminas/laminas-diactoros": "^2.24",
"netcarver/textile": "^4.0",
"nyholm/psr7": "^1.5",
"nyholm/psr7-server": "^1.0",
"phpstan/phpstan": "^1.8",
"slim/psr7": "^1.6",
"squizlabs/php_codesniffer": "^3.7",
"symfony/process": "^5.4"
},
"scripts": {
"test": [
"@phpcs",
"@phpstan",
"@codecept"
],
"phpcbf": "./vendor/bin/phpcbf",
"phpcs": "./vendor/bin/phpcs",
"codecept": "./vendor/bin/codecept run",
"phpstan": "./vendor/bin/phpstan analyse --memory-limit 256M",
"start:test": "cd tests/_data/web/; php -S localhost:9999 index.php",
"start:website": "cd website/web/; php -S localhost:9999 index.php",
"debug:test": "cd tests/_data/web/; HERBIE_DEBUG=1 XDEBUG_MODE=debug php -S localhost:9999 index.php",
"debug:website": "cd website/web/; HERBIE_DEBUG=1 XDEBUG_MODE=debug php -S localhost:9999 index.php"
},
"bin":["herbie"]
}