forked from mauricerenck/komments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.04 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
{
"name": "mauricerenck/komments",
"version": "1.5.1",
"description": "A comment and webmention plugin for Kirby 3",
"type": "kirby-plugin",
"license": "MIT",
"authors": [
{
"name": "Maurice Renck",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"mauricerenck\\Komments\\": "utils/"
},
"classmap": [
"utils"
]
},
"require-dev": {
"getkirby/cms": "^3.6",
"phpunit/phpunit": "^9.5."
},
"require": {
"getkirby/composer-installer": "^1.1",
"indieweb/mention-client": "^1.2",
"php": ">=7.4.0"
},
"suggests": {
"mauricerenck/indieconnector": "1.2"
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"test": "vendor/bin/phpunit --testdox tests",
"build-test-package": "git archive HEAD -o komments.zip --worktree-attributes",
"build-composer": "composer install --no-dev --optimize-autoloader"
}
}