-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
45 lines (45 loc) · 1.11 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
{
"name": "sitegeist/archaeopteryx",
"type": "neos-plugin",
"description": "The missing link editor for Neos",
"license": "MIT",
"authors": [
{
"name": "Martin Ficzel",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Wilhelm Behncke",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"neos/neos": "^5.3 || ^7.0 || ^8.0 || ^9.0 || dev-master"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"phpstan/phpstan": "^1.10.67",
"neos/buildessentials": "^6.3",
"mikey179/vfsstream": "^1.6",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin",
"allow-plugins": {
"neos/composer-plugin": true
}
},
"autoload": {
"psr-4": {
"Sitegeist\\Archaeopteryx\\": "Classes"
}
},
"extra": {
"neos": {
"package-key": "Sitegeist.Archaeopteryx"
}
}
}