1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 09:57:51 +01:00

Minor changes to composer.json for v2.0.0

This commit is contained in:
Niklas Keller 2017-06-15 17:50:28 +02:00
parent 4c7f1a6104
commit 62e7956c93

View File

@ -1,7 +1,7 @@
{ {
"name": "amphp/amp", "name": "amphp/amp",
"homepage": "https://github.com/amphp/amp", "homepage": "http://amphp.org/amp",
"description": "A non-blocking concurrency framework for PHP applications", "description": "A non-blocking concurrency framework for PHP applications.",
"keywords": [ "keywords": [
"async", "async",
"asynchronous", "asynchronous",
@ -36,14 +36,14 @@
"php": ">=7" "php": ">=7"
}, },
"require-dev": { "require-dev": {
"amphp/phpunit-util": "dev-master", "amphp/phpunit-util": "^1",
"react/promise": "^2", "react/promise": "^2",
"friendsofphp/php-cs-fixer": "^2.3", "friendsofphp/php-cs-fixer": "^2.3",
"phpunit/phpunit": "^6.0.9" "phpunit/phpunit": "^6.0.9"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Amp\\": "lib/" "Amp\\": "lib"
}, },
"files": [ "files": [
"lib/functions.php", "lib/functions.php",
@ -52,11 +52,12 @@
}, },
"autoload-dev": { "autoload-dev": {
"psr-4": { "psr-4": {
"Amp\\Test\\": "test/" "Amp\\Test\\": "test"
} }
}, },
"support": { "support": {
"issues": "https://github.com/amphp/amp/issues" "issues": "https://github.com/amphp/amp/issues",
"irc": "irc://irc.freenode.org/amphp"
}, },
"extra": { "extra": {
"branch-alias": { "branch-alias": {