-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.46 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
{
"name": "simplyadmire/admi",
"license": "MIT",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"authors": [
{
"name": "Simply Admire BV",
"email": "support@simplyadmire.com"
},
{
"name": "Lars Nieuwenhuizen",
"email": "lars.nieuwenhuizen@me.com"
}
],
"repositories": [
{
"type": "path",
"url": "src/*",
"options": {
"symlink": true
}
}
],
"require": {
"typo3/flow": "^3.3",
"neos/cqrs": "dev-master"
},
"require-dev": {
"typo3/kickstart": "^3.3",
"typo3/buildessentials": "3.3.x-dev",
"flowpack/behat": "dev-master",
"phpunit/phpunit": "~4.8 || ~5.4.0",
"mikey179/vfsstream": "~1.6"
},
"replace": {
"typo3/flow-base-distribution": "self.version"
},
"suggest": {
"ext-pdo_sqlite": "For running functional tests out-of-the-box this is required"
},
"scripts": {
"post-update-cmd": "TYPO3\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-install-cmd": "TYPO3\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-package-update": "TYPO3\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall",
"post-package-install": "TYPO3\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall"
}
}