-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
47 lines (47 loc) · 1.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
{
"name": "librarianphp/librarian",
"description": "Librarian CMS",
"license": "MIT",
"homepage": "https://github.com/minicli/librarian",
"keywords": ["cms","markdown", "blog"],
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-curl": "*",
"ext-xml": "*",
"librarianphp/librarian-core": "^4.3",
"suin/php-rss-writer": "^1.6",
"librarianphp/command-help": "^1.1",
"librarianphp/command-create": "^1.1",
"librarianphp/command-cache": "^1.1",
"librarianphp/command-web": "^1.2",
"librarianphp/command-build": "^1.2"
},
"scripts": {
"post-install-cmd": [
"@php -r \"file_exists('config/librarian.php') || copy('config_sample.php', 'config/librarian.php');\""
],
"lint": ["pint"],
"test:unit" : ["pest"],
"test:lint": ["pint --test"],
"test" : [
"@test:lint",
"@test:unit"
]
},
"require-dev": {
"pestphp/pest": "^3.2",
"minicli/pest-plugin-curly": "^0.3",
"laravel/pint": "^1.10"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}