-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 3.06 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
{
"name": "remind/rmnd-hybridauth",
"description": "RmndHybridauth extension for TYPO3",
"type": "typo3-cms-extension",
"keywords": ["TYPO3", "CMS", "REMIND", "extension", "facebook", "hybridauth", "login", "fe_users"],
"license": ["GPL-3.0-or-later"],
"authors": [
{
"name": "REMIND GmbH",
"email": "technik@remind.de"
},
{
"name": "Marco Wegner",
"email": "m.wegner@remind.de"
},
{
"name": "Hauke Schulz",
"email": "h.schulz@remind.de"
}
],
"autoload": {
"psr-4": {
"Remind\\RmndHybridauth\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Remind\\RmndHybridauth\\": "Tests"
}
},
"config": {
"optimize-autoloader": true,
"apcu-autoloader": true,
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"sort-packages": true
},
"require": {
"ext-openssl": "*",
"hybridauth/hybridauth": "^3.7.1",
"php": "^7.4.0",
"typo3/cms-core": "^10.4.0"
},
"require-dev": {
"phpmd/phpmd": "^2.10.2",
"remind/confluence-changelog": "^0.2.0",
"sebastian/phpcpd": "^6.0.3",
"squizlabs/php_codesniffer": "^3.6.0",
"typo3/testing-framework": "^6.12.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".build",
"web-dir": ".build/web",
"extension-key": "rmnd_hybridauth"
}
},
"scripts": {
"pmd": "@php ./.build/vendor/phpmd/phpmd/src/bin/phpmd ./Classes ansi ./.build/phpmd.xml --ignore-violations-on-exit",
"pmd-xml": "@php ./.build/vendor/phpmd/phpmd/src/bin/phpmd ./Classes xml ./.build/phpmd.xml --reportfile ./.build/logs/pmd.xml --ignore-violations-on-exit",
"phpcpd": "@php ./.build/vendor/sebastian/phpcpd/phpcpd --log-pmd ./.build/logs/pmd-cpd.xml ./Classes ./Configuration/TCA ./Tests ./ext_emconf.php ./ext_localconf.php",
"test": "@php ./.build/vendor/phpunit/phpunit/phpunit --configuration ./.build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml --testdox --log-junit ./.build/logs/unitreport.xml --whitelist ./Classes ./Tests/Unit",
"conflog": "@php ./.build/vendor/remind/confluence-changelog/bin/conflog conflog:document --spaceKey REHAUTHEXT",
"phpcs": "@php ./.build/vendor/squizlabs/php_codesniffer/bin/phpcs --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 1 --report=full --standard=PSR12 --extensions=php ./Classes ./Tests ./Configuration/TCA ./ext_emconf.php ./ext_localconf.php",
"phpcbf": "@php .build/vendor/squizlabs/php_codesniffer/bin/phpcbf --standard=PSR12 ./Classes ./Tests ./Configuration/TCA ./ext_emconf.php ./ext_localconf.php",
"static-analysis": [
"@pmd",
"@pmd-xml",
"@phpcpd",
"@phpcs",
"@test"
]
}
}