-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
36 lines (36 loc) · 1.43 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
{
"name": "kunstmaan/pagepart-bundle",
"type": "symfony-bundle",
"description": "The KunstmaanPagePartBundle forms the basis of our content management framework. A page built using a composition of blocks names pageparts. These pageparts allow you to fully separate the data from the presentation so non-technical webmasters can manage the website. Every page can have it's own list of possible pageparts, and pageparts are easy to create for your specific project to allow for rapid development.",
"keywords": ["kunstmaan", "cms", "pageparts"],
"homepage": "https://github.com/Kunstmaan/KunstmaanPagePartBundle",
"license": "MIT",
"authors": [
{
"name": "Kunstmaan Team",
"homepage": "http://www.kunstmaan.be/",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"kunstmaan/admin-bundle": "^5.9|^6.0",
"kunstmaan/utilities-bundle": "^5.9|^6.0",
"kunstmaan/node-bundle": "^5.9|^6.0"
},
"require-dev": {
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"symfony/phpunit-bridge": "^5.1",
"phpunit/phpunit": "^8.5"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": { "Kunstmaan\\PagePartBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "5.10-dev"
}
}
}