-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.08 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
{
"name": "librarianphp/librarian",
"description": "Librarian CMS",
"license": "MIT",
"homepage": "https://github.com/minicli/librarian",
"keywords": ["cms","markdown", "blog"],
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-curl": "*",
"ext-xml": "*",
"librarianphp/librarian-core": "^4.0",
"suin/php-rss-writer": "^1.6",
"librarianphp/command-help": "^1.0",
"librarianphp/command-create": "^1.0",
"librarianphp/command-cache": "^1.0",
"librarianphp/command-web": "^1.0",
"librarianphp/command-build": "^1.0"
},
"scripts": {
"post-install-cmd": [
"@php -r \"file_exists('config.php') || copy('config_sample.php', 'config.php');\""
],
"test" : ["pest"],
"csfix": ["php-cs-fixer fix"]
},
"require-dev": {
"pestphp/pest": "^2.0",
"minicli/pest-plugin-curly": "^0.2.1",
"friendsofphp/php-cs-fixer": "^3.16"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}