-
Notifications
You must be signed in to change notification settings - Fork 498
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapt JSON files to comply to editorconfig rules
- Loading branch information
1 parent
9c2337c
commit 8187657
Showing
1 changed file
with
68 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,74 @@ | ||
{ | ||
"name": "rmccue/requests", | ||
"description": "A HTTP library written in PHP, for human beings.", | ||
"homepage": "https://requests.ryanmccue.info/", | ||
"license": "ISC", | ||
"keywords": ["http", "idna", "iri", "ipv6", "curl", "sockets", "fsockopen"], | ||
"authors": [ | ||
{ | ||
"name": "Ryan McCue", | ||
"homepage": "https://rmccue.io/" | ||
}, | ||
{ | ||
"name" : "Alain Schlesser", | ||
"homepage" : "https://github.com/schlessera" | ||
}, | ||
{ | ||
"name" : "Juliette Reinders Folmer", | ||
"homepage" : "https://github.com/jrfnl" | ||
}, | ||
{ | ||
"name" : "Contributors", | ||
"homepage" : "https://github.com/WordPress/Requests/graphs/contributors" | ||
} | ||
], | ||
"support" : { | ||
"issues" : "https://github.com/WordPress/Requests/issues", | ||
"source" : "https://github.com/WordPress/Requests", | ||
"docs" : "https://requests.ryanmccue.info/" | ||
}, | ||
"require": { | ||
"php": ">=5.6" | ||
"name": "rmccue/requests", | ||
"description": "A HTTP library written in PHP, for human beings.", | ||
"homepage": "https://requests.ryanmccue.info/", | ||
"license": "ISC", | ||
"keywords": [ | ||
"http", | ||
"idna", | ||
"iri", | ||
"ipv6", | ||
"curl", | ||
"sockets", | ||
"fsockopen" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Ryan McCue", | ||
"homepage": "https://rmccue.io/" | ||
}, | ||
"require-dev": { | ||
"requests/test-server": "dev-master", | ||
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5", | ||
"squizlabs/php_codesniffer": "^3.5", | ||
"phpcompatibility/php-compatibility": "^9.0", | ||
"wp-coding-standards/wpcs": "^2.0", | ||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7", | ||
"php-parallel-lint/php-parallel-lint": "^1.3", | ||
"php-parallel-lint/php-console-highlighter": "^0.5.0" | ||
{ | ||
"name": "Alain Schlesser", | ||
"homepage": "https://github.com/schlessera" | ||
}, | ||
"type": "library", | ||
"autoload": { | ||
"psr-0": {"Requests": "library/"} | ||
{ | ||
"name": "Juliette Reinders Folmer", | ||
"homepage": "https://github.com/jrfnl" | ||
}, | ||
"scripts" : { | ||
"lint": [ | ||
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --exclude vendor --exclude .git" | ||
], | ||
"checkcs": [ | ||
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs" | ||
], | ||
"fixcs": [ | ||
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf" | ||
], | ||
"test": [ | ||
"@php ./vendor/phpunit/phpunit/phpunit --no-coverage" | ||
], | ||
"coverage": [ | ||
"@php ./vendor/phpunit/phpunit/phpunit" | ||
] | ||
{ | ||
"name": "Contributors", | ||
"homepage": "https://github.com/WordPress/Requests/graphs/contributors" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/WordPress/Requests/issues", | ||
"source": "https://github.com/WordPress/Requests", | ||
"docs": "https://requests.ryanmccue.info/" | ||
}, | ||
"require": { | ||
"php": ">=5.6" | ||
}, | ||
"require-dev": { | ||
"requests/test-server": "dev-master", | ||
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5", | ||
"squizlabs/php_codesniffer": "^3.5", | ||
"phpcompatibility/php-compatibility": "^9.0", | ||
"wp-coding-standards/wpcs": "^2.0", | ||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7", | ||
"php-parallel-lint/php-parallel-lint": "^1.3", | ||
"php-parallel-lint/php-console-highlighter": "^0.5.0" | ||
}, | ||
"type": "library", | ||
"autoload": { | ||
"psr-0": { | ||
"Requests": "library/" | ||
} | ||
}, | ||
"scripts": { | ||
"lint": [ | ||
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --exclude vendor --exclude .git" | ||
], | ||
"checkcs": [ | ||
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs" | ||
], | ||
"fixcs": [ | ||
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf" | ||
], | ||
"test": [ | ||
"@php ./vendor/phpunit/phpunit/phpunit --no-coverage" | ||
], | ||
"coverage": [ | ||
"@php ./vendor/phpunit/phpunit/phpunit" | ||
] | ||
} | ||
} |