summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2014-05-24 14:55:11 +0200
committerKevin Chabowski <kevin@kch42.de>2014-05-24 14:55:11 +0200
commitd48be01fff31a7a9d611802721aa70532d251c3a (patch)
tree53ac39214a27855a6521f91ea448e39ffcd7866b
parent3c51baa4167d5a68ff010dc81525b9340c5f1329 (diff)
downloadste-d48be01fff31a7a9d611802721aa70532d251c3a.tar.gz
ste-d48be01fff31a7a9d611802721aa70532d251c3a.tar.bz2
ste-d48be01fff31a7a9d611802721aa70532d251c3a.zip
Moved to src/ste for psr-4 compliance1.0.0
-rw-r--r--.gitignore1
-rw-r--r--composer.json2
-rwxr-xr-xmkdocu.sh2
-rw-r--r--src/ste/ASTNode.php (renamed from src/ASTNode.php)0
-rw-r--r--src/ste/BreakException.php (renamed from src/BreakException.php)0
-rw-r--r--src/ste/Calc.php (renamed from src/Calc.php)0
-rw-r--r--src/ste/CantLoadTemplate.php (renamed from src/CantLoadTemplate.php)0
-rw-r--r--src/ste/CantSaveTemplate.php (renamed from src/CantSaveTemplate.php)0
-rw-r--r--src/ste/ContinueException.php (renamed from src/ContinueException.php)0
-rw-r--r--src/ste/FatalRuntimeError.php (renamed from src/FatalRuntimeError.php)0
-rw-r--r--src/ste/FilesystemStorageAccess.php (renamed from src/FilesystemStorageAccess.php)0
-rw-r--r--src/ste/Misc.php (renamed from src/Misc.php)0
-rw-r--r--src/ste/ParseCompileError.php (renamed from src/ParseCompileError.php)0
-rw-r--r--src/ste/Parser.php (renamed from src/Parser.php)0
-rw-r--r--src/ste/RuntimeError.php (renamed from src/RuntimeError.php)0
-rw-r--r--src/ste/STECore.php (renamed from src/STECore.php)0
-rw-r--r--src/ste/STEStandardLibrary.php (renamed from src/STEStandardLibrary.php)0
-rw-r--r--src/ste/Scope.php (renamed from src/Scope.php)0
-rw-r--r--src/ste/StorageAccess.php (renamed from src/StorageAccess.php)0
-rw-r--r--src/ste/StorageAccessFailure.php (renamed from src/StorageAccessFailure.php)0
-rw-r--r--src/ste/TagNode.php (renamed from src/TagNode.php)0
-rw-r--r--src/ste/TextNode.php (renamed from src/TextNode.php)0
-rw-r--r--src/ste/Transcompiler.php (renamed from src/Transcompiler.php)0
-rw-r--r--src/ste/VarNotInScope.php (renamed from src/VarNotInScope.php)0
-rw-r--r--src/ste/VariableNode.php (renamed from src/VariableNode.php)0
25 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..22d0d82
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+vendor
diff --git a/composer.json b/composer.json
index 59ef2a6..9b388da 100644
--- a/composer.json
+++ b/composer.json
@@ -5,7 +5,7 @@
},
"autoload": {
"psr-4": {
- "kch42\\ste": "src/"
+ "kch42\\ste\\": "src/ste"
}
},
"license": "MIT",
diff --git a/mkdocu.sh b/mkdocu.sh
index 4377870..7f64e18 100755
--- a/mkdocu.sh
+++ b/mkdocu.sh
@@ -9,4 +9,4 @@ fi; fi
test -d docu/nd || mkdir docu/nd
test -d docu/nd_project_dir || mkdir docu/nd_project_dir
-$ndpath -i src -o html docu/nd -p docu/nd_project_dir
+$ndpath -i src/ste -o html docu/nd -p docu/nd_project_dir
diff --git a/src/ASTNode.php b/src/ste/ASTNode.php
index fc5d9cc..fc5d9cc 100644
--- a/src/ASTNode.php
+++ b/src/ste/ASTNode.php
diff --git a/src/BreakException.php b/src/ste/BreakException.php
index 563bf53..563bf53 100644
--- a/src/BreakException.php
+++ b/src/ste/BreakException.php
diff --git a/src/Calc.php b/src/ste/Calc.php
index e8dba8d..e8dba8d 100644
--- a/src/Calc.php
+++ b/src/ste/Calc.php
diff --git a/src/CantLoadTemplate.php b/src/ste/CantLoadTemplate.php
index 82c7a9f..82c7a9f 100644
--- a/src/CantLoadTemplate.php
+++ b/src/ste/CantLoadTemplate.php
diff --git a/src/CantSaveTemplate.php b/src/ste/CantSaveTemplate.php
index 1072ad1..1072ad1 100644
--- a/src/CantSaveTemplate.php
+++ b/src/ste/CantSaveTemplate.php
diff --git a/src/ContinueException.php b/src/ste/ContinueException.php
index af79b1b..af79b1b 100644
--- a/src/ContinueException.php
+++ b/src/ste/ContinueException.php
diff --git a/src/FatalRuntimeError.php b/src/ste/FatalRuntimeError.php
index d5ca735..d5ca735 100644
--- a/src/FatalRuntimeError.php
+++ b/src/ste/FatalRuntimeError.php
diff --git a/src/FilesystemStorageAccess.php b/src/ste/FilesystemStorageAccess.php
index ef29404..ef29404 100644
--- a/src/FilesystemStorageAccess.php
+++ b/src/ste/FilesystemStorageAccess.php
diff --git a/src/Misc.php b/src/ste/Misc.php
index 56ae759..56ae759 100644
--- a/src/Misc.php
+++ b/src/ste/Misc.php
diff --git a/src/ParseCompileError.php b/src/ste/ParseCompileError.php
index 5ee37c7..5ee37c7 100644
--- a/src/ParseCompileError.php
+++ b/src/ste/ParseCompileError.php
diff --git a/src/Parser.php b/src/ste/Parser.php
index 7e93e47..7e93e47 100644
--- a/src/Parser.php
+++ b/src/ste/Parser.php
diff --git a/src/RuntimeError.php b/src/ste/RuntimeError.php
index ff3b26d..ff3b26d 100644
--- a/src/RuntimeError.php
+++ b/src/ste/RuntimeError.php
diff --git a/src/STECore.php b/src/ste/STECore.php
index c00bf67..c00bf67 100644
--- a/src/STECore.php
+++ b/src/ste/STECore.php
diff --git a/src/STEStandardLibrary.php b/src/ste/STEStandardLibrary.php
index 915b699..915b699 100644
--- a/src/STEStandardLibrary.php
+++ b/src/ste/STEStandardLibrary.php
diff --git a/src/Scope.php b/src/ste/Scope.php
index 0da2724..0da2724 100644
--- a/src/Scope.php
+++ b/src/ste/Scope.php
diff --git a/src/StorageAccess.php b/src/ste/StorageAccess.php
index 81f7439..81f7439 100644
--- a/src/StorageAccess.php
+++ b/src/ste/StorageAccess.php
diff --git a/src/StorageAccessFailure.php b/src/ste/StorageAccessFailure.php
index 4b319da..4b319da 100644
--- a/src/StorageAccessFailure.php
+++ b/src/ste/StorageAccessFailure.php
diff --git a/src/TagNode.php b/src/ste/TagNode.php
index 2527b55..2527b55 100644
--- a/src/TagNode.php
+++ b/src/ste/TagNode.php
diff --git a/src/TextNode.php b/src/ste/TextNode.php
index d48c2bb..d48c2bb 100644
--- a/src/TextNode.php
+++ b/src/ste/TextNode.php
diff --git a/src/Transcompiler.php b/src/ste/Transcompiler.php
index 4988624..4988624 100644
--- a/src/Transcompiler.php
+++ b/src/ste/Transcompiler.php
diff --git a/src/VarNotInScope.php b/src/ste/VarNotInScope.php
index 179d07a..179d07a 100644
--- a/src/VarNotInScope.php
+++ b/src/ste/VarNotInScope.php
diff --git a/src/VariableNode.php b/src/ste/VariableNode.php
index b312e81..b312e81 100644
--- a/src/VariableNode.php
+++ b/src/ste/VariableNode.php