-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathcomposer.json
72 lines (72 loc) · 2.23 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
{
"name": "solspace/craft-freeform",
"description": "The most reliable form builder that's ready for wherever your project takes you.",
"version": "5.8.6",
"type": "craft-plugin",
"authors": [
{
"name": "Solspace",
"homepage": "https://solspace.com/"
}
],
"require": {
"php": "^8.0.2|^8.2.0",
"craftcms/cms": "^4.0.0|^5.0.0",
"dompdf/dompdf": "^1.0|^2.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": "^1.22.1|^2.19|^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.29|^2.0|^3.0",
"composer/class-map-generator": "^1.1",
"tecnickcom/tcpdf": "^6.4",
"fakerphp/faker": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3.0",
"friendsofphp/php-cs-fixer": "^v3.52.0"
},
"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",
"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"
},
"extra": {
"schemaVersion": "5.4.1",
"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
}
},
"minimum-stability": "dev",
"prefer-stable": true
}