-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
43 lines (43 loc) · 1.05 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
{
"name": "elgentos/module-prismicio",
"description": "Magento 2 - Prismic.io integration",
"type": "magento2-module",
"license": "OSL-3.0",
"authors": [
{
"name": "Jeroen Boersma",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"elgentos/prismic-php-sdk": "^6.1",
"magento/module-cms-url-rewrite": "*",
"magento/framework": "*"
},
"replace": {
"elgentos/prismic-io": "*"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"autoload": {
"psr-4": { "Elgentos\\PrismicIO\\": "src/" },
"files": [ "src/registration.php" ]
},
"autoload-dev": {
"psr-4": { "Elgentos\\PrismicIO\\": "tests/" }
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}