forked from meanbee/magento2-webappmanifest
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (58 loc) · 1.27 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
50
51
52
53
54
55
56
57
58
{
"name": "ampersand/magento2-webappmanifest",
"description": "A Magento 2 extension that adds a Web App Manifest to the store.",
"type": "magento2-module",
"version": "1.2.3",
"minimum-stability": "stable",
"license": [
"MIT"
],
"authors": [
{
"name": "Evan Burrell",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repo.packagist.com/ampersandhq/"
},
{
"packagist.org": false
}
],
"require": {
"php": "^7.4||^8.1",
"magento/framework": "^102.0||^103",
"magento/module-backend": "^101.0||^102.0",
"magento/module-config": "^101.1",
"magento/module-store": "^101.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Ampersand\\WebAppManifest\\": "src/"
}
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix --diff",
"test:lint": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"test:types": "vendor/bin/phpstan analyze ./src",
"test": [
"@test:lint",
"@test:types"
]
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}