-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.66 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.66 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
{
"name": "fgtclb/t3oodle",
"type": "typo3-cms-extension",
"description": "Simple poll extension for TYPO3 CMS. t3oodle allows your frontend users to create new polls and vote for existing ones.",
"keywords": ["poll", "schedule", "doodle", "voting", "typo3"],
"authors": [
{
"name": "FGTCLB",
"email": "hello@fgtclb.com",
"homepage": "https://www.fgtclb.com/"
}
],
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1",
"ext-json": "*",
"typo3/cms-core": "^11.5",
"typo3/cms-fluid-styled-content": "^11.5",
"georgringer/numbered-pagination": "^2.0"
},
"require-dev": {
"armin/editorconfig-cli": "^1.0",
"bk2k/bootstrap-package": "^14.0",
"friendsofphp/php-cs-fixer": "^3.64",
"helhum/typo3-console": "^7.1",
"helmich/typo3-typoscript-lint": "^3.2",
"jangregor/phpstan-prophecy": "^1.0",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-phpunit": "^1.4",
"phpunit/phpunit": "^10.5",
"saschaegerer/phpstan-typo3": "^1.1",
"typo3/cms-composer-installers": "^4.0.0-RC1",
"typo3/cms-felogin": "^11.5",
"typo3/cms-tstemplate": "^11.5",
"typo3/testing-framework": "^7.1"
},
"autoload": {
"psr-4": {
"FGTCLB\\T3oodle\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FGTCLB\\T3oodle\\Tests\\": "Tests/"
}
},
"replace": {
"typo3-ter/t3oodle": "self.version"
},
"config": {
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "t3oodle",
"web-dir": ".Build/public"
}
},
"scripts": {
"cs:check": ".Build/bin/php-cs-fixer fix --config Build/php-cs-fixer/php-cs-rules.php --ansi --diff --verbose --dry-run",
"cs:fix": ".Build/bin/php-cs-fixer fix --config Build/php-cs-fixer/php-cs-rules.php --ansi",
"analyze:php": ".Build/bin/phpstan analyse --ansi --no-progress --memory-limit=768M --configuration=Build/phpstan/Core11/phpstan.neon",
"analyze:baseline": ".Build/bin/phpstan analyse --ansi --no-progress --memory-limit=768M --configuration=Build/phpstan/Core11/phpstan.neon --generate-baseline=Build/phpstan/Core11/phpstan-baseline.neon",
"lint:typoscript": ".Build/bin/typoscript-lint --ansi --config=./Build/typoscript-lint/typoscript-lint.yml",
"lint:php": "find .*.php *.php Classes Configuration Tests -name '*.php' -print0 | xargs -r -0 -n 1 -P 4 php -l"
}
}