This repository was archived by the owner on Nov 8, 2021. It is now read-only.
forked from LRotherfield/Nibble-Forms
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.34 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.34 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
42
43
44
45
46
{
"name" : "azuracast/azuraforms",
"description": "A modern, namespaced, configuration-driven forms engine for PHP.",
"require": {
"php": ">=7.4",
"ext-json": "*",
"psr/http-message": ">1.0",
"league/mime-type-detection": "^1.7"
},
"require-dev": {
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^0.12",
"roave/security-advisories": "dev-master"
},
"scripts": {
"test": [
"@composer install",
"@phplint",
"@phpstan"
],
"phplint": "parallel-lint . --exclude vendor",
"phpstan": "phpstan analyze"
},
"homepage": "https://github.com/AzuraCast/azuraforms",
"license": "MIT",
"autoload": {
"psr-4": {
"AzuraForms\\": "src/"
}
},
"authors": [
{
"name": "Buster 'Silver Eagle' Neece",
"email": "buster@busterneece.com",
"homepage": "https://dashdev.net/",
"role": "Lead Developer of AzuraForms Fork"
},
{
"name": "Luke Rotherfield",
"email": "luke@lrotherfield.com",
"homepage": "http://lrotherfield.com",
"role": "Developer of original Nibble Forms"
}
]
}