-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
45 lines (45 loc) · 1014 Bytes
/
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": "kaudaj/kjmodulebedrock",
"description": "Module Bedrock",
"type": "prestashop-module",
"license": "AFL-3.0",
"authors": [
{
"name": "Kaudaj",
"email": "[email protected]",
"homepage": "https://kaudaj.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0"
},
"require-dev": {
"phpro/grumphp-shim": "^1.5",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/extension-installer": "^1.1",
"prestashop/php-dev-tools": "^4.2"
},
"autoload": {
"psr-4": {
"Kaudaj\\Module\\ModuleBedrock\\": "src/"
}
},
"config": {
"prepend-autoloader": false
},
"extra": {
"grumphp": {
"config-default-path": "tests/grumphp.dist.yml"
}
},
"scripts": {
"grum": [
"grumphp run --ansi"
],
"header-stamp": [
"vendor/bin/header-stamp --extensions=php,js,css,scss,tpl,html.twig,vue --exclude=vendor,node_modules --license=_dev/header-stamp/afl.txt"
]
}
}