1
0
mirror of https://github.com/danog/PHPStruct.git synced 2024-12-02 09:17:53 +01:00
PHPStruct/composer.json

24 lines
554 B
JSON
Raw Normal View History

2016-07-04 01:43:23 +02:00
{
"name": "danog/phpstruct",
2016-07-04 01:43:23 +02:00
"type": "library",
"description": "PHP implementation of python's struct module.",
2016-07-04 01:43:23 +02:00
"license": "MIT",
"homepage": "https://daniil.it/phpstruct",
2016-07-04 01:43:23 +02:00
"keywords": ["pack", "unpack", "byte", "bytes", "python", "struct"],
"authors": [
{
"name": "danog",
"email": "daniil@daniil.it"
}
],
"require": {
2016-07-12 16:40:24 +02:00
"php": ">=5.6.0",
"phpunit/phpunit": "5.4.*"
2016-07-04 01:43:23 +02:00
},
"autoload": {
"psr-0": {
"danog\\PHP\\": "lib/"
2016-07-04 01:43:23 +02:00
}
}
}