digitemp-rrdgraph/composer.json

36 lines
756 B
JSON
Raw Normal View History

2020-06-09 16:02:25 +09:00
{
"name": "niu-admin/temperature",
"type": "project",
"scripts": {
"fix-diff": [
"./vendor/bin/php-cs-fixer fix --dry-run --diff"
],
"fix": [
"./vendor/bin/php-cs-fixer fix"
]
},
"autoload": {
"psr-4": {
"Orrisroot\\": "lib/"
}
},
"require": {
2021-11-11 15:47:07 +09:00
"php": ">=8.0",
2020-06-09 16:02:25 +09:00
"ext-json": "*",
2020-06-09 17:22:33 +09:00
"ext-mbstring": "*",
"ext-rrd": "*",
2021-11-11 15:47:07 +09:00
"phpmailer/phpmailer": "^6.5",
2021-06-02 10:26:49 +09:00
"twig/twig": "^3.3"
2020-06-09 16:02:25 +09:00
},
"require-dev": {
2021-11-11 15:47:07 +09:00
"friendsofphp/php-cs-fixer": "^3.2"
2020-06-09 16:02:25 +09:00
},
"license": "MIT",
"authors": [
{
"name": "Yoshihiro OKUMURA",
"email": "orrisroot@gmail.com"
}
]
}