-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
70 lines (70 loc) · 1.84 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
66
67
68
69
70
{
"name": "bnomei/kirby3-dotenv",
"type": "kirby-plugin",
"version": "2.2.0",
"description": "Kirby 3 Plugin for environment variables from .env",
"license": "MIT",
"authors": [
{
"name": "Bruno Meilick",
"email": "[email protected]"
}
],
"keywords": [
"kirby3",
"kirby3-cms",
"kirby3-plugin",
"dotenv",
"dotenv-loader",
"enviroment-variables"
],
"autoload": {
"psr-4": {
"Bnomei\\": "classes/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"require": {
"php": ">=8.0",
"getkirby/composer-installer": "^1.1",
"vlucas/phpdotenv": "^5.3"
},
"scripts": {
"analyze": "phpstan analyse classes",
"fix": "php-cs-fixer fix",
"test": [
"mkdir -p tests/logs",
"@putenv XDEBUG_MODE=coverage",
"phpunit --configuration ./phpunit.xml"
],
"dist": [
"composer install --no-dev --optimize-autoloader",
"git rm -rf --cached .; git add .;"
],
"kirby": [
"composer install",
"composer update",
"composer install --working-dir=tests/kirby --no-dev --optimize-autoloader",
"composer update --working-dir=tests/kirby"
]
},
"require-dev": {
"getkirby/cms": "^3.5",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "^9.5"
},
"extra": {
"kirby-cms-path": "tests/kirby"
},
"suggest": {
"bnomei/kirby3-lapse": "For faster and automatic caching based on modification of Kirby Objects",
"bnomei/kirby3-janitor": "Use a Panel Button or PHP code to clear the cache",
"bnomei/kirby3-security-headers": "CPS headers to make the the web a saver place. Sensible defaults with zero configuration.",
"robinscholz/better-rest": "Allows you to send authenticated GET requests querying the Kirby API"
}
}