Skip to content

Commit e67524d

Browse files
author
its-pranjalpandey
committed
Initial commit
0 parents  commit e67524d

File tree

7 files changed

+1422
-0
lines changed

7 files changed

+1422
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# php2js
2+
convert php code to javascript code that run on browser

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "piqon/php2js",
3+
"description": "Simple library to convert php into frontend javascript code",
4+
"type": "library",
5+
"require": {
6+
"nikic/php-parser": "^4.10"
7+
},
8+
"autoload": {
9+
"psr-4": {
10+
"PHP2JS": "./src"
11+
}
12+
},
13+
"license": "MIT",
14+
"authors": [
15+
{
16+
"name": "its-pranjalpandey",
17+
"email": "pranjaltech10@gmail.com"
18+
}
19+
]
20+
}

composer.lock

Lines changed: 75 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)