-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.13 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
{
"name": "typesetsh/magento2-extension",
"description": "Magento2 typeset.sh extension",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Jacob Siefer",
"email": "mail@jsiefer.de"
}
],
"require": {
"magento/framework": "^102.0",
"magento/module-sales": "^102.0",
"magento/module-store": "^101.0",
"magento/module-directory": "^100.0",
"typesetsh/typesetsh": "^0.9"
},
"autoload": {
"psr-4": {
"Typesetsh\\Pdf\\": "src/"
},
"files": ["src/registration.php"]
},
"autoload-dev": {
"psr-4": {
"Typesetsh\\Pdf\\": "tests/unit/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},{
"type": "composer",
"url": "https://packages.typeset.sh"
}
],
"require-dev": {
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "~2.14.0",
"magento/magento-coding-standard": "^5",
"phan/phan": "dev-master"
}
}