forked from PackageFactory/atomic-fusion-presentationobjects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·49 lines (49 loc) · 1.56 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
{
"name": "packagefactory/atomicfusion-presentationobjects",
"type": "neos-package",
"description": "Allows for usage of type-safe, testable presentation objects (e.g. value objects) in Atomic Fusion as a replacement for props and propsets.",
"license": "MIT",
"authors": [
{
"name": "Bernhard Schmitt",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4",
"neos/neos": "^5.0 || ^7.0 || dev-master",
"sitegeist/kaleidoscope": "^5.0 || ^6.0 || dev-master"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"phpstan/phpstan": "^0.12.82",
"neos/buildessentials": "^6.3",
"mikey179/vfsstream": "^1.6",
"squizlabs/php_codesniffer": "^3.5",
"jangregor/phpstan-prophecy": "^0.8.0",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"PackageFactory\\AtomicFusion\\PresentationObjects\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"PackageFactory\\AtomicFusion\\PresentationObjects\\Tests\\": "Tests",
"Vendor\\Default\\": "Tests/Unit/Fixtures/Default",
"Vendor\\Site\\": "Tests/Unit/Fixtures/Site",
"Vendor\\Shared\\": "Tests/Unit/Fixtures/Shared"
}
},
"extra": {
"neos": {
"package-key": "PackageFactory.AtomicFusion.PresentationObjects"
}
}
}