-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·35 lines (35 loc) · 1.03 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
{
"name": "yootheme/starter-utils",
"description": "YOOtheme Pro - Starter Utilities",
"license": "MIT",
"keywords": [
"joomla",
"wordpress",
"yootheme"
],
"homepage": "https://yootheme.com",
"support": {
"issues": "https://github.com/yootheme/starter-utils/issues",
"source": "https://github.com/yootheme/starter-utils"
},
"require": {
"php": "^8.0"
},
"require-dev": {
"composer/composer": "^2.7",
"phpstan/phpstan": "^1.11"
},
"autoload": {
"psr-4": {
"YOOtheme\\Starter\\": "src"
}
},
"scripts": {
"phpstan": "phpstan analyse -c phpstan.neon",
"run:task": "YOOtheme\\Starter\\TaskHelper::run",
"create:plugin": "YOOtheme\\Starter\\CreatePluginCommand",
"create:element": "YOOtheme\\Starter\\CreateElementCommand",
"create:module": "YOOtheme\\Starter\\CreateModuleCommand",
"create:joomlaUpdate": "YOOtheme\\Starter\\CreateJoomlaUpdateCommand"
}
}