php-toml/composer.json

37 lines
737 B
JSON
Raw Normal View History

2016-02-23 12:51:24 -03:00
{
2017-07-05 17:42:19 -03:00
"name" : "leonelquinteros/php-toml",
"description" : "PHP parser for TOML language ( https://github.com/toml-lang/toml )",
"require" : {
"php" : ">=5.2.0"
},
"type" : "library",
"keywords" : [
"toml",
"parser",
"php",
"library",
"lib",
"class",
"package",
"mojombo",
"leonelquinteros"
],
"homepage" : "http://github.com/leonelquinteros/php-toml",
2018-01-30 11:46:35 -03:00
"license" : "BSD-3-Clause-Clear",
2017-07-05 17:42:19 -03:00
"authors" : [{
"name" : "Leonel Quinteros",
"email" : "leonel.quinteros@gmail.com",
"role" : "Author"
}
],
2017-09-25 12:29:47 +08:00
"autoload": {
"classmap": [
"./src/Toml.php"
]
},
2017-07-05 17:42:19 -03:00
"support" : {
"issues" : "https://github.com/leonelquinteros/php-toml/issues",
"source" : "https://github.com/leonelquinteros/php-toml"
}
2017-09-25 12:29:47 +08:00
}