libpairtwo/composer.json

36 lines
872 B
JSON
Raw Normal View History

2018-12-24 14:06:13 +01:00
{
2019-01-10 20:22:35 +01:00
"name": "jeroened/libpairtwo",
2019-02-06 20:20:07 +01:00
"type": "library",
2019-06-20 17:26:33 +02:00
"description": "A library written in PHP that reads files which are saved using common pairing applications",
"keywords": ["chess", "pairing"],
2018-12-24 14:06:13 +01:00
"license": "MIT",
2019-02-06 20:20:07 +01:00
"authors": [
{
"name": "Jeroen De Meerleer",
"email": "schaak@jeroened.be",
"homepage": "https://www.jeroened.be",
"role": "Developer"
}
],
2018-12-24 14:06:13 +01:00
"require": {
2019-01-19 14:14:01 +01:00
"php": "^7.1",
2019-02-12 15:46:00 +01:00
"myclabs/php-enum": "^1.6",
"ext-iconv": "*"
2018-12-24 14:06:13 +01:00
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"friendsofphp/php-cs-fixer": "^2.0"
},
"autoload": {
"psr-4": {
2019-01-16 18:02:02 +01:00
"JeroenED\\Libpairtwo\\": "src/"
2018-12-24 14:06:13 +01:00
}
},
"config": {
"platform": {
2019-01-10 20:22:35 +01:00
"php": "7.1"
2018-12-24 14:06:13 +01:00
},
"sort-packages": true
}
}