Last active
March 28, 2019 08:43
-
-
Save VPetar/a307a20b08a6993008334e6ad0dff724 to your computer and use it in GitHub Desktop.
income_expanse_categories.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* categories.php | |
* Created By User: VPetar | |
* Date: 11/23/2018 | |
* Time: 11:27 AM | |
*/ | |
return [ | |
"incomes" => [ | |
"Income" => [ | |
"Paycheck", | |
"Investment", | |
"Returned Purchase", | |
"Bonus", | |
"Interest Income", | |
"Reimbursement", | |
"Rental Income", | |
"Other", | |
] | |
], | |
"expenses" => [ | |
"Entertainment" => [ | |
"Arts", | |
"Music", | |
"Movies & DVDs", | |
"Newspaper & Magazines", | |
], | |
"Education" => [ | |
"Tuition", | |
"Student Loan", | |
"Books & Supplies", | |
], | |
"Shopping" => [ | |
"Clothing (was Clothes & Accessories)", | |
"Books", | |
"Electronics & Software", | |
"Hobbies", | |
"Sporting Goods", | |
], | |
"Personal Care" => [ | |
"Laundry", | |
"Hair", | |
"Spa & Massage", | |
], | |
"Health & Fitness" => [ | |
"Dentist", | |
"Doctor", | |
"Eye care", | |
"Pharmacy", | |
"Health Insurance", | |
"Gym", | |
"Sports", | |
], | |
"Kids" => [ | |
"Activities", | |
"Allowance", | |
"Baby Supplies", | |
"Babysitter & Daycare", | |
"Child Support", | |
"Toys", | |
], | |
"Food & Dining" => [ | |
"Groceries", | |
"Coffee shops", | |
"Fast Food", | |
"Restaurants", | |
"Alcohol", | |
], | |
"Gifts & Donations" => [ | |
"Gift", | |
"Charity", | |
], | |
"Investments" => [ | |
"Deposit", | |
"Withdrawal", | |
"Dividends & Cap Gains", | |
"Buy", | |
"Sell", | |
], | |
"Bills & Utilities" => [ | |
"Television", | |
"Home Phone", | |
"Internet", | |
"Mobile Phone", | |
"Utilities", | |
], | |
"Car & Transport" => [ | |
"Gas & Fuel", | |
"Parking", | |
"Service & Auto Parts", | |
"Auto Payment", | |
"Auto Insurance", | |
], | |
"Travel" => [ | |
"Air Travel", | |
"Hotel", | |
"Rental Car & Taxi", | |
"Vacation", | |
], | |
"Fees & Charges" => [ | |
"Service Fee", | |
"Late Fee", | |
"Finance Charge", | |
"ATM Fee", | |
"Bank Fee", | |
"Commissions", | |
], | |
"Business Services" => [ | |
"Advertising", | |
"Office Supplies", | |
"Printing", | |
"Shipping", | |
"Legal", | |
], | |
"Taxes" => [ | |
"Federal Tax", | |
"State Tax", | |
"Local Tax", | |
"Sales Tax", | |
"Property Tax", | |
] | |
] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment