-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
65 lines (65 loc) · 1.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mauricerenck/indieconnector",
"version": "2.3.1",
"description": "A Kirby IndieWeb plugin",
"type": "kirby-plugin",
"license": "MIT",
"homepage": "https://github.com/mauricerenck/indieConnector",
"authors": [
{
"name": "Maurice Renck",
"email": "[email protected]"
}
],
"support": {
"docs": "https://github.com/mauricerenck/indieConnector/blob/main/README.md",
"source": "https://github.com/mauricerenck/indieConnector"
},
"autoload": {
"psr-4": {
"mauricerenck\\IndieConnector\\": "lib/"
},
"classmap": [
"lib"
]
},
"require": {
"getkirby/composer-installer": "^1.2",
"php": ">=8.2.0",
"indieweb/mention-client": "^1.2",
"ext-curl": "*",
"mf2/mf2": "^0.5.0",
"cjrasmussen/bluesky-api": "^2.0"
},
"require-dev": {
"getkirby/cms": "^4",
"phpunit/phpunit": "^10",
"mockery/mockery": "^1.5"
},
"replace": {
"mauricerenck/tratschtante": "*"
},
"suggests": {
"mauricerenck/komments": "2.0.5"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"scripts": {
"start": [
"Composer\\Config::disableProcessTimeout",
"@php -S localhost:8000 kirby/router.php"
],
"test": "vendor/bin/phpunit --testdox",
"build-test-package": "git archive HEAD -o indieConnector.zip --worktree-attributes",
"build-composer": "composer install --no-dev --optimize-autoloader",
"build-release": [
"composer test tests",
"composer install --no-dev --optimize-autoloader",
"npm run build"
]
}
}