Skip to content

Commit

Permalink
Add helpers.php
Browse files Browse the repository at this point in the history
  • Loading branch information
sebacarrasco93 committed Sep 25, 2023
1 parent 7abca93 commit 1055140
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"type": "project",
"license": "MIT",
"autoload": {
"files": [
"extra/helpers.php"
],
"psr-4": {
"Kaataa\\": "src/",
"Tests\\": "tests/"
Expand Down
15 changes: 15 additions & 0 deletions extra/helpers.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

/**
*
* This file is autoloaded
*
* Here you can by start to writing your own helpers
* Helpers can be used anywhere in your Kaataa project.
*
*/

function your_custom_function()
{
//
}

0 comments on commit 1055140

Please sign in to comment.