-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "anibalsanchez/xt-tailwind-css",
"description": "XT Tailwind - My Blog template, based on Tailwind CSS.",
"authors": [
{
"name": "Extly CB",
"email": "team@extly.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"anibalsanchez/extly-html-asset-tags-builder": "^1.7.0",
"doctrine/inflector": "~1.1.0",
"extly/xt-renderers-for-joomla": "^0.0.2",
"illuminate/support": "~5.4.0",
"mnsami/composer-custom-directory-installer": "^2.0"
},
"repositories": [
{
"type": "git",
"url": "git@github.com:extly/xt-renderers-for-joomla.git"
},
{
"type": "git",
"url": "git@github.com:anibalsanchez/xt-tailwind-for-joomla-template.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Extly\\": "library/src/"
}
},
"autoload-dev": {
"psr-4": {
"Extly\\": "library/tests/"
}
},
"config": {
"allow-plugins": {
"mnsami/composer-custom-directory-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "7.4.33"
},
"platform-check": false,
"preferred-install": "dist",
"sort-packages": true,
"vendor-dir": "library/vendor"
},
"extra": {
"php-prefixer": {
"global-scope-prefix": "XTP_",
"includeExtraSourcePaths": [
"template"
],
"namespaces-prefix": "XTP_BUILD",
"project-name": "XT Tailwind CSS"
}
}
}