Skip to content

Commit

Permalink
Merge 54310f4 into 011fba2
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Jan 14, 2021
2 parents 011fba2 + 54310f4 commit f5fca46
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -17,6 +17,12 @@ One line is all it takes:
require_once( 'twist/framework.php' );
```

...or with Composer

```php
use Twist\framework;
```

## Vagrant

To get started with a Vagrant machine:
Expand Down
20 changes: 15 additions & 5 deletions composer.json
@@ -1,8 +1,13 @@
{
"name": "twistphp/twistphp",
"type": "project",
"name": "twistphp/framework",
"type": "library",
"description": "TwistPHP is an open source PHP MVC framework built from the ground up",
"keywords": ["framework","twistphp","MVC","PHP"],
"keywords": [
"framework",
"twistphp",
"twist",
"mvc"
],
"homepage": "https://twistphp.com",
"license": "GPL",
"support": {
Expand All @@ -11,5 +16,10 @@
},
"require": {
"php": ">=5.6.0"
}
}
},
"autoload": {
"psr-4": {
"Twist\\": "dist/twist"
}
}
}

0 comments on commit f5fca46

Please sign in to comment.