1
0
mirror of https://github.com/flarum/core.git synced 2025-09-02 20:52:45 +02:00

Hello world!

This commit is contained in:
Toby Zerner
2014-12-20 16:56:46 +10:30
commit 74db323f83
279 changed files with 11954 additions and 0 deletions

33
composer.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "flarum/core",
"description": "",
"authors": [
{
"name": "Toby Zerner",
"email": "toby@flarum.org"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "4.2.*",
"laracasts/commander": "1.1.*",
"leafo/lessphp": "0.4.0",
"fzaninotto/faker": "1.4.0"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"Flarum\\Core": "src/",
"Flarum\\Api": "src/",
"Flarum\\Web": "src/"
}
},
"scripts": {
"post-install-cmd": [
"php artisan config:publish flarum/core"
]
},
"minimum-stability": "dev"
}