-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from anant-svc/feature/initial-code-release
Initial code release
- Loading branch information
Showing
12 changed files
with
1,932 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/vendor/ | ||
/.lh | ||
/.vscode |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
language: php | ||
|
||
php: | ||
- 7.4 | ||
- 7.3 | ||
- 7.2 | ||
- 7.1 | ||
- 7.0 | ||
|
||
before_script: | ||
- composer install | ||
|
||
script: | ||
- vendor/bin/phpunit |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
# any-data-to-lazer-database | ||
Convert your any data tables to Lazer database dynamically | ||
# Mysql to lazer database | ||
Convert your MySQL tables/Array to Lazer database dynamically | ||
|
||
It will convert the key/value paired array to lazer database table | ||
|
||
Features: | ||
* Dynamically create columns with the data type based on the value | ||
* Add records after the table is created | ||
* Adds callback for the objects like classes etc. | ||
|
||
Hope you are doing well. | ||
|
||
Regards |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"name": "anant-svc/any-data-to-lazer-database", | ||
"description": "PHP library to transfer MYSQL data to Lazer-Database", | ||
"keywords": ["lazer", "simple", "json", "flat", "file", "database", "db", "mysql", "converter"], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Ananth Iyer", | ||
"email": "ananthiyerit@gmail.com", | ||
"role": "Owner" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.0", | ||
"greg0/lazer-database": "^2.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "6.2.0", | ||
"mikey179/vfsstream": "~1.6" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Lazer\\AnyDataToLazerDatabase\\": "src/", | ||
"Lazer\\AnyDataToLazerDatabase\\Test\\": "tests/src/" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "./vendor/bin/phpunit --testdox" | ||
}, | ||
"config": { | ||
"github-protocols": ["https"] | ||
} | ||
} |
Oops, something went wrong.