Skip to content

Commit

Permalink
Merge pull request #488 from WordPress/feature/composer-update-info
Browse files Browse the repository at this point in the history
Composer: enhance information
  • Loading branch information
schlessera authored Jun 18, 2021
2 parents 93aa5e8 + 1cd8463 commit c72c4e1
Showing 1 changed file with 62 additions and 45 deletions.
107 changes: 62 additions & 45 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,64 @@
{
"name": "rmccue/requests",
"description": "A HTTP library written in PHP, for human beings.",
"homepage": "http://github.com/WordPress/Requests",
"license": "ISC",
"keywords": ["http", "idna", "iri", "ipv6", "curl", "sockets", "fsockopen"],
"authors": [
{
"name": "Ryan McCue",
"homepage": "http://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"
]
}
"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"
},
"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"
]
}
}

0 comments on commit c72c4e1

Please sign in to comment.