Implemented the renewed composer.json and gitattributes for a composer release.

This should allow us to create the project soon in packagist.
This commit is contained in:
Abel Hoogeveen 2016-07-07 13:47:53 +02:00
parent 955715c79b
commit c51fc93fb2
2 changed files with 34 additions and 8 deletions

5
.gitattributes vendored Normal file
View File

@ -0,0 +1,5 @@
.gitattributes export-ignore
.gitignore export-ignore
.gitlab_ci.yml export-ignore
tests/ export-ignore
CI/ export-ignore

View File

@ -1,15 +1,36 @@
{
"name": "fuzeworks/core",
"description": "FuzeWorks Framework Core",
"homepage": "https://techfuze.net/fuzeworks",
"license": ["GPL-3.0"],
"authors": [
{
"name": "Abel Hoogeveen",
"homepage": "https://myfuze.net"
},
{
"name": "FuzeWorks Community",
"homepage": "https://techfuze.net/fuzeworks/contributors"
}
],
"require": {
"php": ">=5.4.0",
"php": ">=5.6.0",
"ext-curl": "*",
"ext-json": "*",
"ext-json": "*"
},
"suggest": {
"smarty/smarty": "Allows using Smarty in templates",
"latte/latte": "Allows using Latte in templates"
},
"require-dev": {
"phpunit/phpunit": "5.3.*",
"apigen/apigen": "^4.1",
"mikey179/vfsStream": "1.1.*",
"smarty/smarty": "~3.1",
"tracy/tracy": "*",
"latte/latte": "*"
},
"require-dev": {
"phpunit/phpunit": "5.3.*",
"apigen/apigen": "^4.1",
"mikey179/vfsStream": "1.1.*"
}
}
"autoload": {
"classmap": ["Core/System/"],
}
}