-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
92 lines (92 loc) · 1.86 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "jop-software/typo3-sentry-client",
"type": "typo3-cms-extension",
"description": "Sentry Client for TYPO3",
"keywords": [
"TYPO3",
"TYPO3 CMS",
"Sentry",
"Sentry Client"
],
"homepage": "https://jop-software.de",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Johannes Przymusinski",
"email": "johannes.przymusinski@jop-software.de",
"homepage": "https://jop-software.de",
"role": "Developer"
}
],
"repositories": {
"tests": {
"type": "path",
"url": "Tests/Packages/*"
}
},
"require": {
"php": "^7.4 || ^8.0",
"php-http/curl-client": "^2.2",
"sentry/sentry": "^3.3",
"typo3/cms-core": "^11.5"
},
"require-dev": {
"jop-software/demo-extension": "@dev",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9",
"saschaegerer/phpstan-typo3": "^1.0",
"squizlabs/php_codesniffer": "^3.6",
"ssch/typo3-rector": "^1.0",
"typo3/minimal": "^v11.5.0",
"typo3/testing-framework": "^6.10"
},
"config": {
"bin-dir": ".build/bin",
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"extra": {
"typo3/cms": {
"app-dir": ".build",
"extension-key": "typo3_sentry_client",
"web-dir": ".build/public"
}
},
"autoload": {
"psr-4": {
"Jops\\TYPO3\\Sentry\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Jops\\TYPO3\\Sentry\\Tests\\": "Tests"
}
},
"prefer-stable": true,
"scripts": {
"ci:sniff": "phpcs",
"ci:phpstan": "phpstan",
"php:test": "phpunit",
"php-unit": [
"phpunit"
],
"phpstan": [
"phpstan"
],
"prepare-release": [
"rm -rf .ddev",
"rm -rf .github",
"rm phpcs.xml",
"rm phpstan.neon",
"rm phpunit.xml",
"rm .gitignore"
]
}
}