-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 898 Bytes
/
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
{
"name": "librarianphp/librarian-core",
"type": "library",
"description": "Core Librarian Package",
"license": "MIT",
"homepage": "https://github.com/librarianphp/librarian-core",
"autoload": {
"psr-4": {
"Librarian\\": "src/"
}
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"minicli/curly": "^0.2",
"minicli/minicache": "^0.2",
"librarianphp/parsed": "^1.0",
"lukaswhite/php-feed-writer": "^2.1",
"minicli/minicli": "^4.2",
"twig/twig": "^3.6"
},
"require-dev": {
"pestphp/pest": "^3.2",
"laravel/pint": "^1.1",
"mockery/mockery": "^1.6"
},
"scripts": {
"lint": ["pint"],
"test:unit" : ["pest"],
"test:lint": ["pint --test"],
"test" : [
"@test:lint",
"@test:unit"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}