-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.28 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
{
"name": "phpedia/plataforma",
"description": "Plataforma da PHPédia",
"license": "MIT",
"homepage": "https://phpedia.dev",
"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"],
"lint": ["pint"],
"create:page": ["./librarian create content page"],
"create:post": ["./librarian create content post"],
"cache:clear": ["./librarian cache clear"],
"cache:refresh": ["./librarian cache refresh"],
"build": ["./librarian build"]
},
"require-dev": {
"pestphp/pest": "^2.0",
"minicli/pest-plugin-curly": "^0.2.1",
"friendsofphp/php-cs-fixer": "^3.16",
"laravel/pint": "^1.10"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}