-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
72 lines (72 loc) · 1.79 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
{
"name": "cundd/rest",
"type": "typo3-cms-extension",
"description": "REST API for TYPO3 CMS",
"keywords": [
"typo3cms",
"rest",
"api",
"webservice",
"service",
"restful"
],
"require": {
"php": "^7.2|^8.1",
"ext-ctype": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.21",
"psr/http-message": "^1.0.1",
"psr/log": "^1.0.2",
"zendframework/zend-diactoros": "^1.3.7",
"cundd/test-flight": "^0.1.5",
"phpspec/prophecy": "*",
"ext-simplexml": "*",
"ext-curl": "*",
"psr/container": "^1.0",
"nimut/testing-framework": "^6.0.1",
"phpspec/prophecy-phpunit": "^2.0"
},
"homepage": "https://rest.corn.rest/",
"authors": [
{
"name": "Daniel Corn",
"email": "info@cundd.net"
}
],
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"Cundd\\Rest\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Cundd\\Rest\\Tests\\": "Tests/",
"Cundd\\CustomRest\\": "Tests/Functional/Fixtures/Extensions/custom_rest/Classes"
}
},
"replace": {
"typo3-ter/rest": "self.version"
},
"scripts": {
"post-autoload-dump": [
"@prepare-extension-test-structure"
],
"prepare-extension-test-structure": [
"Nimut\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"extension-key": "rest"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}