Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Ignore bash scripts
*.sh

/vendor/
17 changes: 17 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "mhadjimichael/phppivot",
"description": "A flexible Pivot Table library for PHP.",
"type": "library",
"autoload": {
"psr-4": {
"Mhadjimichael\\Phppivot\\": "src/"
}
},
"authors": [
{
"name": "Marios Hadjimichael",
"email": "marioshadj@gmail.com"
}
],
"require": {}
}
18 changes: 18 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions PHPivot.php → src/PHPivot.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php

namespace Mhadjimichael\Phppivot;
//PHPivot
/*Supported Features:
-Can Import "Prepared" 2D Array/Table
Expand Down