-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.58 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
{
"name": "piotr-cz/joomla-plugin-fields-pcz_vimeo",
"type": "project",
"description": "Joomla! Vimeo Custom Field Plugin",
"keywords": [
"Joomla",
"Plugin",
"Custom Fields",
"Vimeo"
],
"homepage": "https://github.com/piotr-cz/joomla-customfields-vimeo",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Piotr Konieczny",
"email": "[email protected]",
"homepage": "https://piotr.cz"
}
],
"support": {
"issues": "https://github.com/piotr-cz/joomla-customfields-vimeo/issues"
},
"require": {
"php": "^7.1|^8",
"squizlabs/php_codesniffer": "^3.6"
},
"require-dev": {
"joomla/coding-standards": "~3.0@alpha"
},
"scripts": {
"check": "phpcs --extensions=php -p --ignore=build,vendor,tmpl/* --standard=vendor/Joomla/coding-standards/Joomla .",
"build": "composer archive",
"build-release-hashes": [
"composer archive --file pkg_pcz_vimeo --quiet",
"@php -r \"echo sprintf('sha384: %s', hash_file('sha384', 'build/pkg_pcz_vimeo.zip'));\""
],
"update-hashes": "@php bin/update-hashes.php"
},
"scripts-descriptions": {
"check": "Check Joomla coding standard",
"build": "Build release",
"build-release-hashes": "Build release hashes used in update manifest",
"update-hashes": "Update media files hashes/ versions"
},
"config": {
"archive-format": "zip",
"archive-dir": "./build",
"sort-packages": true
}
}