This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
81 lines (81 loc) · 2.53 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "solspace/craft-express-forms",
"description": "Intuitive and lightweight form builder.",
"version": "2.0.3",
"type": "craft-plugin",
"keywords": [
"forms",
"express",
"form builder",
"freeform"
],
"authors": [
{
"name": "Solspace",
"homepage": "https://solspace.com"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/solspace/craft-express-forms/issues",
"source": "https://github.com/solspace/craft-express-forms",
"docs": "https://docs.solspace.com/craft/express-forms/v2/"
},
"require": {
"craftcms/cms": "^4.0.0",
"solspace/craft3-commons": "^1.0.19",
"symfony/property-access": "^2.8|^3.0|^4.0|^5.0|^6.0",
"symfony/finder": "^2.8|^3.0|^4.0|^5.0|^6.0",
"symfony/yaml": "^3.0|^4.0|^5.0|^6.0",
"nesbot/carbon": "^1.22.1|^2.19",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3.0",
"friendsofphp/php-cs-fixer": "^3.4.0",
"brainmaestro/composer-git-hooks": "^2.8"
},
"autoload": {
"psr-4": {
"Solspace\\ExpressForms\\": "packages/plugin/src/",
"Solspace\\Tests\\ExpressForms\\": "packages/plugin/tests"
}
},
"scripts": {
"test:unit": "vendor/bin/phpunit --configuration ./phpunit.xml",
"fix": "vendor/bin/php-cs-fixer fix --diff",
"fix:dry-run": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cghooks": "vendor/bin/cghooks",
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update"
},
"extra": {
"schemaVersion": "1.0.2",
"class": "Solspace\\ExpressForms\\ExpressForms",
"handle": "express-forms",
"name": "Express Forms",
"developer": "Solspace",
"developerUrl": "https://docs.solspace.com/",
"documentationUrl": "https://docs.solspace.com/craft/express-forms/v2/",
"changelogUrl": "https://raw.githubusercontent.com/solspace/craft-express-forms/v2/CHANGELOG.md",
"hooks": {
"pre-commit": [
"set -e",
"npm -v",
"php -v",
"printf '\\n\\e[32m######### Linting Scripts #########\\e[0m\\n\\n'",
"npm run lint",
"printf '\\n\\e[32m######### Running Unit Tests #########\\e[0m\\n\\n'",
"composer run test:unit",
"printf '\\n\\e[32m######### Running CS Fixer dry run #########\\e[0m\\n\\n'",
"composer run fix:dry-run || (printf \"\\e[41mCS Fixer found issues\\e[0m\\n\" && exit 1)"
]
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}