php-basics/composer.json

37 lines
1.0 KiB
JSON
Raw Normal View History

2023-09-11 19:31:06 +02:00
{
2023-11-06 17:54:14 +01:00
"name": "opencultureconsulting/basics",
"description": "This is a collection of generic Classes and useful Traits for PHP projects.",
2023-09-11 19:31:06 +02:00
"type": "library",
"keywords": [
"trait",
"getter",
"setter",
2023-10-11 16:36:43 +02:00
"singleton",
"queue"
2023-09-11 19:31:06 +02:00
],
2023-11-06 17:54:14 +01:00
"homepage": "https://github.com/opencultureconsulting/php-basics",
2023-09-11 19:31:06 +02:00
"readme": "README.md",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Sebastian Meyer",
"email": "sebastian.meyer@opencultureconsulting.com",
"homepage": "https://www.opencultureconsulting.com",
"role": "maintainer"
}
],
"support": {
2023-11-06 17:54:14 +01:00
"issues": "https://github.com/opencultureconsulting/php-basics/issues",
"source": "https://github.com/opencultureconsulting/php-basics",
"docs": "https://github.com/opencultureconsulting/php-basics/blob/main/README.md"
2023-09-11 19:31:06 +02:00
},
"require": {
"php": "^8.0"
},
"autoload": {
"psr-4": {
2023-11-06 17:54:14 +01:00
"OCC\\Basics\\": "src/"
2023-09-11 19:31:06 +02:00
}
}
}