-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
46 lines (46 loc) · 1.06 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
{
"name": "samwilson/phpflickr",
"description": "A PHP wrapper for the Flickr API, including Oauth.",
"type": "library",
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"Samwilson\\PhpFlickr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Samwilson\\PhpFlickr\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"carlos-mg89/oauth": "^0.8",
"psr/cache": "^1.0|^2.0|^3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"mediawiki/minus-x": "^0.3 || ^1.0",
"phpunit/phpunit": "^9.5",
"symfony/cache": "^5.4",
"symfony/var-dumper": "^5.4",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phan/phan": "^5.4"
},
"scripts": {
"phan": "phan --allow-polyfill-parser --load-baseline .phan/baseline.php",
"test": [
"composer validate",
"parallel-lint . --exclude node_modules --exclude vendor",
"minus-x check . -q",
"phpcs -sp",
"@phan",
"phpunit",
"git status | grep 'nothing to commit, working tree clean'"
]
}
}