forked from TYPO3GmbH/ext-hubspot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.92 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
{
"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": "^8.7 || ^9.5 || ^10.4 || 11.*.*@dev",
"typo3/cms-core": "^8.7 || ^9.5 || ^10.4 || 11.*.*@dev",
"typo3/cms-extbase": "^8.7 || ^9.5 || ^10.4 || 11.*.*@dev",
"typo3/cms-frontend": "^8.7 || ^9.5 || ^10.4 || 11.*.*@dev",
"typo3/cms-fluid": "^8.7 || ^9.5 || ^10.4 || 11.*.*@dev",
"hubspot/hubspot-php": "^1.0 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"typo3/testing-framework": "^2 || ^4.9 || ^5.0 || ^6.2",
"overtrue/phplint": "^1.1"
},
"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"
]
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"discard-changes": true,
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "hubspot",
"app-dir": ".build",
"web-dir": ".build/public"
}
}
}