pot/composer.json

47 lines
981 B
JSON
Raw Permalink Normal View History

2024-01-11 04:35:40 +07:00
{
"name": "${REPO_OWNER}/${REPO_NAME}",
"description": "${REPO_DESCRIPTION}",
"readme": "README.md",
"keywords": [],
"type": "",
2024-01-11 05:41:52 +07:00
"homepage": "${REPO_LINK}",
2024-01-11 04:35:40 +07:00
"license": "WTFPL",
"authors": [
{
"name": "${REPO_OWNER}",
"email": "",
"homepage": "",
"role": "Programmer"
}
],
"support": {
2024-01-11 05:41:52 +07:00
"docs": "${REPO_LINK}/manual",
"issues": "${REPO_LINK}/issues"
2024-01-11 04:35:40 +07:00
},
"require": {
"php": "~8.3",
"ext-sodium": "~8.3",
"mirzaev/minimal": "^2.2.0",
"mirzaev/accounts": "~1.2.x-dev",
"mirzaev/arangodb": "^1.0.0",
"triagens/arangodb": "~3.9.x-dev",
"twig/twig": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "~9.5"
},
"autoload": {
"psr-4": {
2024-01-11 05:38:30 +07:00
"${REPO_OWNER}\\${REPO_NAME}\\": "${REPO_OWNER}/${REPO_NAME}/system"
2024-01-11 04:35:40 +07:00
}
},
"autoload-dev": {
"psr-4": {
2024-01-11 05:38:30 +07:00
"${REPO_OWNER}\\${REPO_NAME}\\tests\\": "${REPO_OWNER}/${REPO_NAME}/tests"
2024-01-11 04:35:40 +07:00
}
2024-01-11 05:38:30 +07:00
},
"scripts": {
"pre-install-cmd": "bash ./install.sh"
2024-01-11 04:35:40 +07:00
}
}