-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.8 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.8 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
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
{
"name": "HeikoHardt/t3ee-voting-example",
"type": "typo3-cms-extension",
"description": "Example extension for using PHPUnit, Behat and Jasmine within TYPO3 context.",
"authors": [
{
"name": "Heiko Hardt",
"role": "Developer",
"email": "typo3.heiko@hardt.me"
}
],
"license": [
"GPL-3.0"
],
"keywords": [
"TYPO3 CMS",
"bdd",
"behat",
"jasmine"
],
"version": "0.0.1",
"require": {
"php": ">=5.5.0",
"typo3/cms": ">=7.6.0,<8.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8.0",
"mikey179/vfsStream": "1.6.0",
"behat/behat": "^3.3",
"behat/mink": "^1.7",
"behat/mink-extension": "^2.2",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "^1.3",
"heikohardt/behat-typo3-extension": "7.6.*"
},
"autoload": {
"psr-4": {
"HeikoHardt\\T3eeVotingExample\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"HeikoHardt\\T3eeVotingExample\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": "../../default.instance/typo3/sysext/core/Tests/"
}
},
"replace": {
"t3ee_voting_example": "self.version",
"typo3-ter/t3ee-voting-example": "self.version"
},
"config": {
"vendor-dir": "../../default.instance/vendor",
"bin-dir": "../../default.instance/bin",
"preferred-install": {
"typo3/cms": "source",
"*": "dist"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p ../../default.instance/typo3conf/ext/",
"[ -L ../../default.instance/typo3conf/ext/t3ee_voting_example ] || ln -snvf ../../../heiko-hardt/t3ee_voting_example ../../default.instance/typo3conf/ext/t3ee_voting_example"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "../../default.instance"
}
}
}