-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
45 lines (45 loc) · 1.11 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
{
"name": "mzur/kirby-uniform",
"description": "A versatile Kirby plugin to handle web form actions.",
"type": "kirby-plugin",
"license": "MIT",
"keywords": ["kirby", "form"],
"authors": [
{
"name": "Martin Zurowietz",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/mzur/kirby-uniform/issues",
"source": "https://github.com/mzur/kirby-uniform",
"docs": "http://kirby-uniform.readthedocs.io"
},
"require": {
"mzur/kirby-form": "^3.0",
"getkirby/composer-installer": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"getkirby/cms": "^3.5 || ^4.0"
},
"autoload": {
"psr-4": {
"Uniform\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Uniform\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": false
}
}
}