-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 787 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 787 Bytes
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": "mage-os/module-theme-optimization",
"description": "Page transitions and speculative loading rules for Magento",
"type": "magento2-module",
"require": {
"magento/framework": "^103.0",
"magento/module-store": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5||^10.0"
},
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MageOS\\ThemeOptimization\\": ""
}
},
"scripts": {
"test": "phpunit"
},
"repositories": [
{
"type": "composer",
"url": "https://mirror.mage-os.org"
}
],
"config": {
"allow-plugins": false
}
}