-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
77 lines (77 loc) · 2.27 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": "t3g/hubspot",
"type": "typo3-cms-extension",
"description": "hubpot extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "TYPO3 GmbH",
"role": "Developer",
"homepage": "https://typo3.com/"
}
],
"require": {
"typo3/cms-backend": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-core": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-extbase": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-frontend": "^9.5 || ^10.4 || ^11.5",
"typo3/cms-fluid": "^9.5 || ^10.4 || ^11.5",
"hubspot/hubspot-php": "^1.0 || ^3.0",
"ext-json": "*",
"ext-pdo": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"typo3/testing-framework": "^4.9 || ^5.0 || ^6.2",
"overtrue/phplint": "^1.1",
"phpspec/prophecy": "^1.15"
},
"autoload": {
"psr-4": {
"T3G\\Hubspot\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"T3G\\Hubspot\\Tests\\": "Tests/"
}
},
"scripts": {
"t3g:test:php:lint": [
"phplint"
],
"t3g:test:php:unit": [
"phpunit -c Build/UnitTests.xml"
],
"t3g:test": [
"@t3g:test:php:lint", "@t3g:test:php:unit"
],
"t3g:cgl": [
"php-cs-fixer --diff -v fix"
],
"post-autoload-dump": [
"mkdir -p .build/public/typo3conf/ext/", "[ -L .build/public/typo3conf/ext/hubspot ] || ln -snvf ../../../../. .build/public/typo3conf/ext/hubspot"
],
"docs:generate": [
"docker run --rm t3docs/render-documentation show-shell-commands > tempfile.sh; echo 'dockrun_t3rd makehtml' >> tempfile.sh; bash tempfile.sh; rm tempfile.sh"
]
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"discard-changes": true,
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "hubspot",
"app-dir": ".build",
"web-dir": ".build/public"
}
}
}