-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.7 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.7 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
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
{
"name": "solspace/craft-freeform",
"description": "The most flexible and user-friendly form building plugin!",
"version": "5.14.23",
"type": "craft-plugin",
"authors": [
{
"name": "Solspace",
"homepage": "https://solspace.com/"
}
],
"require": {
"php": "^8.0.2|^8.2.0",
"craftcms/cms": "^4.17|^5.9",
"dompdf/dompdf": "^2.0.4|^3.0",
"symfony/property-access": "^5.0|^6.0|^7.0",
"symfony/finder": "^5.0|^6.0|^7.0",
"symfony/filesystem": "^5.0|^6.0|^7.0",
"symfony/expression-language": "^5.0|^6.0|^7.0",
"symfony/serializer": "^5.0|^6.0|^7.0",
"hashids/hashids": "^3.0|^4.0|^5.0",
"egulias/email-validator": "^2.1|^3.0|^4.0",
"nesbot/carbon": "^2.72.6|^3.0.0",
"stripe/stripe-php": "^7.0|^8.0|^9.0|^10.0|^12.0|^13.0|^14.0|^15.0",
"ext-json": "*",
"ext-zip": "*",
"doctrine/annotations": "^2.0",
"phpoffice/phpspreadsheet": "^1.30|^2.0|^3.0|^4.0|^5.0",
"composer/class-map-generator": "^1.1",
"tecnickcom/tcpdf": "^6.4",
"fakerphp/faker": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5.1",
"friendsofphp/php-cs-fixer": "^3.85",
"phpcompatibility/php-compatibility": "^9.3.5",
"squizlabs/php_codesniffer": "^3.13.2",
"craftcms/commerce": "^5"
},
"autoload": {
"psr-4": {
"Solspace\\Freeform\\": "packages/plugin/src/"
}
},
"autoload-dev": {
"psr-4": {
"Solspace\\Freeform\\Tests\\": "packages/plugin/src/Tests/"
}
},
"scripts": {
"test:unit": "vendor/bin/phpunit --configuration ./phpunit.xml",
"compat:check": "vendor/bin/phpcs -p ./packages/plugin --extensions=php",
"fix": "vendor/bin/php-cs-fixer fix --diff --config=./.php-cs-fixer.dist.php",
"fix:dry-run": "vendor/bin/php-cs-fixer fix --dry-run --diff --config=./.php-cs-fixer.dist.php",
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
},
"extra": {
"schemaVersion": "5.14.3",
"handle": "freeform",
"class": "Solspace\\Freeform\\Freeform",
"name": "Freeform",
"developer": "Solspace",
"developerUrl": "https://docs.solspace.com/",
"documentationUrl": "https://docs.solspace.com/craft/freeform/v5/",
"changelogUrl": "https://raw.githubusercontent.com/solspace/craft-freeform/v5/CHANGELOG.md",
"hasSettings": true,
"hasCpSection": true
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}