-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (44 loc) · 1.11 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (44 loc) · 1.11 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
{
"name": "web-tp3/tp3-facebook",
"type": "typo3-cms-extension",
"description" : "use Facebook Social Plugins - page, Comment and more",
"homepage": "https://web.tp3.de/manual/tp3-facebook.html",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0 <7.5",
"typo3/cms-core": "^9.5 || ^10"
},
"require-dev": {
"nimut/testing-framework": "^1.0 || ^2.0 || ^3.0 || ^4.0",
"web-tp3/cag_tests":"^1.2",
"phpunit/phpunit": "*",
"helhum/typo3-console": "^5",
"typo3/testing-framework": "*"
},
"autoload": {
"psr-4": {
"Tp3\\Tp3Facebook\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Tp3\\Tp3Facebook\\": "Tests/"
}
},
"replace": {
"web-tp3/tp3_facebook": "self.version"
},
"suggest": {
"web-tp3/tp3social": "*"
},
"scripts": {
"test:php:unit": [
"@php -v",
"@php .Build/bin/phpunit Tests/Unit"
]
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
}
}