diff --git a/composer.json b/composer.json index df582c0..14abcd6 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,10 @@ "name": "confirm-it-solutions/php-zabbix-api", "type": "library", "description": "PhpZabbixApi library", - "keywords": ["zabbix", "api"], + "keywords": [ + "zabbix", + "api" + ], "homepage": "https://github.com/confirm/PhpZabbixApi", "license": "MIT", "authors": [ @@ -14,24 +17,18 @@ } ], "require": { - "php": "^5.3|^7.0", + "php": "^5.3 || ^7.0", "ext-json": "*", "ext-openssl": "*", "ext-pcre": "*" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^1.13|^2.16", - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + "friendsofphp/php-cs-fixer": "^1.13 || ^2.16", + "phpunit/phpunit": "<4.8.35 || <5.4.3,>=5.0" }, "suggest": { "ext-posix": "In order to get the real user ID of the current process." }, - "autoload": { - "psr-4": { "ZabbixApi\\": ["src/"] } - }, - "autoload-dev": { - "psr-4": { "ZabbixApi\\Tests\\": ["tests/"] } - }, "config": { "sort-packages": true }, @@ -39,5 +36,19 @@ "branch-alias": { "dev-master": "2.4-dev" } + }, + "autoload": { + "psr-4": { + "ZabbixApi\\": [ + "src/" + ] + } + }, + "autoload-dev": { + "psr-4": { + "ZabbixApi\\Tests\\": [ + "tests/" + ] + } } }