-
-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# fatfree-core | ||
Fat-Free Framework core library | ||
|
||
### Usage: | ||
|
||
First make sure to add a proper url rewrite configuration to your server, see https://fatfreeframework.com/3.6/routing-engine#DynamicWebSites | ||
|
||
**without composer:** | ||
|
||
```php | ||
$f3 = require('lib/base.php'); | ||
``` | ||
|
||
**with composer:** | ||
|
||
``` | ||
composer require bcosca/fatfree-core | ||
``` | ||
|
||
```php | ||
require("vendor/autoload.php"); | ||
$f3 = \Base::instance(); | ||
``` | ||
|
||
--- | ||
For the main repository (demo package), see https://github.com/bcosca/fatfree | ||
For the test bench and unit tests, see https://github.com/bcosca/fatfree/tree/dev | ||
For the user guide, see https://fatfreeframework.com/user-guide | ||
For the documentation, see https://fatfreeframework.com/api-reference |