initial: bootstrap from BukidBountyApp base

This commit is contained in:
Jonathan Sykes
2026-06-06 18:43:00 +08:00
commit eb4a5731fb
5674 changed files with 160857 additions and 0 deletions

View File

@@ -0,0 +1,103 @@
<?php
declare(strict_types=1);
$CategoryAndSubCategoryList = [
"Food & Beverage" => [
"Grains",
"Oilseeds",
"Sugar",
"Coffee",
"Cocoa",
"Livestock",
"Dairy Products",
],
"Packaged Foods" => [
"Canned goods",
"Snacks",
"Frozen meals",
"Breakfast cereals",
"Sauces",
"Condiments",
],
"Beverages" => [
"Soft drinks",
"Juices",
"Bottled water",
"Alcoholic beverages",
"Tea",
"Coffee",
],
"Produce" => ["Fruits", "Vegetables", "Herbs"],
"Personal Care & Cosmetics" => [
"Skincare",
"Haircare",
"Makeup",
"Fragrances",
"Toiletries",
],
"Household Goods" => [
"Cleaning supplies",
"Laundry detergents",
"Paper products",
"Kitchenware",
"Home décor",
"Furniture",
],
"Apparel & Footwear" => [
"Clothing",
"Shoes",
"Accessories",
],
"Electronics" => [
"Smartphones",
"Computers",
"Televisions",
"Cameras",
"Audio equipment",
"Appliances",
],
"Toys & Games" => [
"Board games",
"Video games",
"Dolls",
"Action figures",
"Puzzles",
],
"Books & Stationery" => [
"Novels",
"Textbooks",
"Notebooks",
"Pens",
"Pencils",
],
"Health & Wellness" => [
"Vitamins",
"Supplements",
"Over-the-counter medications",
"Fitness equipment",
],
"Industrial Goods" => [
"Raw Materials",
'Components & Parts',
'Machinery & Equipment',
'Chemicals'
],
"Services" => [
"Financial Services",
"Telecommunications",
"Transportation",
"Healthcare",
"Education",
"Software & Technology Services",
],
"Agricultural Products" => ["Flowers", "Nursery stock", "Animal feed"],
];
return $CategoryAndSubCategoryList;

View File

@@ -0,0 +1,39 @@
<?php
declare(strict_types=1);
return [
"Agriculture" => [
"Livestock",
"Grains & Seeds",
"Produce",
"Agricultural Machinery",
"Fertilizers & Pesticides",
],
"Retail" => [
"Groceries",
"Apparel",
"Electronics",
"Household Items",
"Personal Care",
],
"Services" => [
"Consultancy",
"Maintenance & Repair",
"Logistics",
"Marketing",
],
"Technology" => [
"Software Development",
"IT Support",
"Electronics Manufacturing",
],
"Education" => [
"Online Courses",
"Training Centers",
"Educational Materials",
],
"General" => [
"Miscellaneous",
],
];