-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.4 KB
/
Copy pathcomposer.json
File metadata and controls
71 lines (71 loc) · 1.4 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "akunzai/joomla-external-login",
"description": "External Login for Joomla!",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Charley Wu",
"email": "akunzai@gmail.com"
},
{
"name": "Christophe Demko",
"email": "chdemko@gmail.com",
"homepage": "http://chdemko.com",
"role": "Developer"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "joomla/joomla-cms",
"version": "6.0.3",
"dist": {
"url": "https://github.com/joomla/joomla-cms/releases/download/6.0.3/Joomla_6.0.3-Stable-Full_Package.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/joomla/joomla-cms.git",
"type": "git",
"reference": "tags/6.0.3"
}
}
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"joomla/joomla-cms": "6.0.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0"
},
"prefer-stable": true,
"scripts": {
"lint": [
"php-cs-fixer fix --diff --dry-run"
],
"fix": [
"php-cs-fixer fix"
],
"phpstan": [
"phpstan analyse"
],
"phpstan-baseline": [
"phpstan analyse --generate-baseline"
],
"bundle": [
"./bundle.sh"
]
}
}