1
0
mirror of https://github.com/danog/PHPStruct.git synced 2024-11-26 19:54:38 +01:00
PHPStruct/composer.json

23 lines
518 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": {
"php": ">=5.6.0"
},
"autoload": {
"psr-0": {
"danog\\PHP\\": "lib/"
2016-07-04 01:43:23 +02:00
}
}
}