-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
56 lines (56 loc) · 1.56 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
{
"name": "studiomitte/friendlycaptcha",
"description": "FriendlyCaptcha Plugin for EXT:powermail and EXT:form",
"type": "typo3-cms-extension",
"homepage": "https://www.studiomitte.com",
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^12.4.5 || ^13.4"
},
"require-dev": {
"typo3/cms-composer-installers": "^3.1.3 || 4.0.0-RC1 || ^5.0",
"typo3/cms-form": "^12.4.5 || ^13.4",
"phpunit/phpunit": "^10",
"typo3/coding-standards": "^0.5.3",
"friendsofphp/php-cs-fixer": "^3.51.0",
"webmozart/assert": "^1.11.0",
"typo3/testing-framework": "^8.2"
},
"suggest": {
"in2code/powermail": "Support for EXT:powermail",
"typo3/cms-form": "Support for EXT:form"
},
"autoload": {
"psr-4": {
"StudioMitte\\FriendlyCaptcha\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"StudioMitte\\FriendlyCaptcha\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true
}
},
"scripts": {
"cs": "php ./.Build/bin/php-cs-fixer fix --dry-run -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"csfix": "php ./.Build/bin/php-cs-fixer fix -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"extension-key": "friendlycaptcha_official",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
}
}