-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 850 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 850 Bytes
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
{
"name": "mistic100/flickr2piwigo",
"description": "A Piwigo plugin for importing photos from Flickr.",
"license": "GPL-2.0-only",
"config": {
"platform": {
"php": "8.2"
}
},
"require": {
"samwilson/phpflickr": "^6",
"tedivm/stash": "^1"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.0",
"mediawiki/minus-x": "^1.0",
"samwilson/piwigo-coding-standards": "^0.1"
},
"scripts": {
"test": [
"composer validate --ansi",
"./vendor/bin/parallel-lint --exclude vendor .",
"./vendor/bin/phpcs --standard=.phpcs.xml -s .",
"./vendor/bin/minus-x check ."
],
"fix": [
"./vendor/bin/phpcbf .",
"./vendor/bin/minus-x fix ."
]
}
}