Initial commit

This commit is contained in:
2021-12-07 17:26:34 +01:00
commit 0c9fd2e892
15 changed files with 674 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
{
"name": "noccylabs/spark",
"description": "Energize your development workflow",
"type": "application",
"license": "MIT",
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "cvagnetoft@gmail.com"
}
],
"bin": [
"bin/spark"
],
"autoload": {
"psr-4": {
"Spark\\": "src/",
"": "runtime/"
},
"files": [
"runtime/functions.php"
]
},
"extra": {
"phar": {
"output": "spark.phar"
}
},
"require": {
"php": "^8.0",
"ext-zip": "^1.19",
"ext-xml": "^8.0",
"symfony/console": "^6.0",
"symfony/expression-language": "^6.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.0",
"psr/log": "^3.0",
"symfony/var-dumper": "^6.0"
}
}