composer.json (858B)
1 { 2 "name": "herzult/php-ssh", 3 "type": "library", 4 "description": "Provides an object-oriented wrapper for the php ssh2 extension.", 5 "keywords": ["ssh", "ssh2"], 6 "license": "MIT", 7 "authors": [ 8 { 9 "name": "Antoine Hérault", 10 "homepage": "https://github.com/Herzult" 11 }, 12 { 13 "name": "The contributors", 14 "homepage": "http://github.com/Herzult/php-ssh/contributors" 15 } 16 ], 17 "require": { 18 "php": ">=5.3.2", 19 "herzult/php-ssh": "~1.0" 20 }, 21 "require-dev": { 22 "phpunit/phpunit": "3.7.*", 23 "symfony/filesystem": "~2.4" 24 }, 25 "autoload": { 26 "psr-0": { 27 "Ssh": "src/" 28 } 29 }, 30 "extra": { 31 "branch-alias": { 32 "dev-master": "1.x-dev" 33 } 34 } 35 }