-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.21 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
{
"name": "nsmle/ouo-bypass",
"description": "A PHP library to bypass ouo.io/press short links",
"type": "library",
"keywords": [
"shortlink",
"ouo.io",
"ouo.press",
"php",
"ouo-bypass",
"shorlink-bypass"
],
"homepage": "https://github.com/nsmle/ouo-bypass",
"license": "MIT",
"autoload": {
"psr-4": {
"Nsmle\\OuoBypass\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nsmle\\OuoBypass\\Test\\": "tests/"
}
},
"authors": [
{
"name": "nsmle",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^6.0|^7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "dev-master",
"phpunit/phpunit": "10.0.x-dev",
"friendsofphp/php-cs-fixer": "dev-master"
},
"scripts": {
"fix": "php ./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix src/ --allow-risky=yes --config=php-cs-fixer.php",
"check": "php ./vendor/bin/phpcs src/ --standard=PSR12",
"test": "php ./vendor/bin/phpunit --no-coverage",
"coverage": "php ./vendor/bin/phpunit"
}
}