Skip to content
This repository was archived by the owner on Dec 27, 2023. It is now read-only.

Commit 324751d

Browse files
committed
First commit
1 parent ee86906 commit 324751d

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

.gitignore

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
composer.phar
1+
composer.lock
22
vendor/
3-
4-
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
5-
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
6-
# composer.lock
3+
.idea

README.md

Whitespace-only changes.

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "litipk/jupyter-php",
3+
"description": "A PHP Kernel for Jupyter",
4+
"type": "project",
5+
"license": "MIT",
6+
"require": {
7+
"php": "5.*,>=5.4",
8+
"ext-zmq": "*",
9+
"psy/psysh": "0.6.*",
10+
"composer/composer": "1.0.0-alpha11"
11+
},
12+
"require-dev": {
13+
14+
},
15+
"autoload": {
16+
"psr-4": { "Litipk\\JupyterPHP\\": "src/"}
17+
},
18+
"scripts": {
19+
20+
}
21+
}

src/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)