flatrr/composer.json

31 lines
633 B
JSON
Raw Normal View History

2018-08-17 21:02:50 +00:00
{
2018-08-17 22:21:05 +00:00
"name": "byjoby/flatrr",
2018-08-17 21:02:50 +00:00
"description": "A library for working with multi-dimensional arrays through flattened keys",
"type": "library",
"license": "MIT",
"authors": [{
"name": "Joby Elliott",
"email": "joby@byjoby.com"
}],
"require-dev": {
"phpunit/phpunit": "^7.3"
},
"autoload": {
"psr-4": {
2018-08-17 22:09:45 +00:00
"Flatrr\\": "src/"
2018-08-17 21:02:50 +00:00
}
},
"autoload-dev": {
"psr-4": {
2018-08-17 22:09:45 +00:00
"Flatrr\\": "tests/"
2018-08-17 21:02:50 +00:00
}
},
"scripts": {
"test": [
"phpunit"
]
},
"require": {
"symfony/yaml": "^3.4"
}
2018-08-17 22:21:05 +00:00
}