-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.06 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"name": "fairpm/fair-beacon",
"description": "Transform your WP site into a FAIR Package Management Repository",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"version": "0.1.0",
"authors": [
{
"name": "FAIR Contributors"
}
],
"homepage": "https://github.com/fairpm/fair-beacon",
"support": {
"issues": "https://github.com/fairpm/fair-beacon/issues",
"source": "https://github.com/fairpm/fair-beacon"
},
"require": {
"php": ">=8.3",
"yocto/yoclib-multibase": "^1.2",
"simplito/elliptic-php": "^1.0",
"spomky-labs/cbor-php": "^3.1"
},
"require-dev": {
"humanmade/coding-standards": "^1.2"
},
"autoload": {
"classmap": [
"inc/"
]
},
"config": {
"lock": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"lint": "@php ./vendor/bin/phpcs .",
"format": "@php ./vendor/bin/phpcbf ."
}
}