-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (45 loc) · 1.21 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
{
"name": "airtonzanon/sculpin-contentful-bundle",
"description": "Fetch contentful content and dump the markdowns as posts for sculpin",
"keywords": ["sculpin", "twig", "contentful", "markdown"],
"license": "MIT",
"authors": [
{
"name": "Airton Zanon",
"email": "[email protected]",
"homepage": "https://airton.dev"
}
],
"suggest": {
"sculpin/sculpin": "@stable"
},
"require": {
"php": "^8.1",
"ext-iconv": "*",
"contentful/contentful": "^7.0.1",
"symfony/console": "^v6.2.10"
},
"require-dev": {
"malukenho/mcbumpface": "^1.2.0",
"phpunit/phpunit": "^10.1.3",
"infection/infection": "^0.27.0",
"vimeo/psalm": "^5.11.0"
},
"extra": {
"symfony": {
"allow-contrib": "true"
}
},
"autoload": {
"psr-4": { "AirtonZanon\\SculpinContentfulBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "AirtonZanon\\SculpinContentfulBundle\\Tests\\": "tests" }
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"malukenho/mcbumpface": true
}
}
}