pot/composer.json

47 lines
1.1 KiB
JSON
Raw Normal View History

2024-01-11 04:35:40 +07:00
{
"name": "${REPO_OWNER}/${REPO_NAME}",
"description": "${REPO_DESCRIPTION}",
"readme": "README.md",
"keywords": [],
2024-01-11 05:58:38 +07:00
"type": "site",
2024-01-11 05:49:22 +07:00
"homepage": "https://git.mirzaev.sexy${REPO_LINK}",
2024-01-11 04:35:40 +07:00
"license": "WTFPL",
"authors": [
{
"name": "${REPO_OWNER}",
2024-01-11 05:58:38 +07:00
"email": "${REPO_OWNER}@gmail.com",
2024-01-11 06:17:52 +07:00
"homepage": "https://${REPO_OWNER}.page",
2024-01-11 04:35:40 +07:00
"role": "Programmer"
}
],
"support": {
2024-01-11 05:49:22 +07:00
"docs": "https://git.mirzaev.sexy${REPO_LINK}/manual",
"issues": "https://git.mirzaev.sexy${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": {
2024-01-11 06:17:52 +07:00
"pre-update-cmd": "./install.sh"
2024-01-11 04:35:40 +07:00
}
}