Skip to content

Commit

Permalink
Merge pull request #175 from spiral/develop
Browse files Browse the repository at this point in the history
Public Release
  • Loading branch information
wolfy-j committed Apr 6, 2017
2 parents d9d28bd + 8f15c5f commit 27047aa
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
CHANGELOG for 0.9.0 RC
======================

1.0.0. (06.04.2017)
-----
- first public release, no BC changes

0.9.14 (31.03.2017)
-----
- improvements in Translation indexations

0.9.13 (31.03.2017)
-----
- bugfix in Loader caused an exception with Swift::autoloader
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Spiral, PSR7/PHP7 Framework

<img src="https://raw.githubusercontent.com/spiral/guide/master/resources/logo.png" height="170px" alt="Spiral Framework" align="left"/>

The Spiral framework provides open and modular Rapid Application Development (RAD) platform to create applications using DDD architecture, database tools, code re-usability, extremely friendly [IoC](https://github.com/container-interop/container-interop), PSR-7, simple syntax and customizable scaffolding mechanisms.
The Spiral framework provides open and modular Rapid Application Development (RAD) environment, database tools, code re-usability, extremely friendly [IoC](https://github.com/container-interop/container-interop), PSR-7, simple syntax and customizable scaffolding mechanisms.

<b>[Skeleton App](https://github.com/spiral-php/application)</b> | [Guide](https://github.com/spiral-php/guide) | [Twitter](https://twitter.com/spiralphp) | [Modules](https://github.com/spiral-modules) | [CHANGELOG](/CHANGELOG.md) | [Contributing](https://github.com/spiral/guide/blob/master/contributing.md) | [Forum](https://groups.google.com/forum/#!forum/spiral-framework)

Expand Down Expand Up @@ -139,12 +139,12 @@ class Post extends RecordEntity
User::INVERSE => 'collaborated_posts'
],

//Relation thought interface
//Pre-compiled relations
'author' => [
self::BELONGS_TO => AuthorInterface::class,
self::LATE_BINDING => true
],

//Hybrid databases
'metadata' => [
Document::ONE => Mongo\Metadata::class
Expand Down
18 changes: 8 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@
],
"require": {
"php": ">=7.0",
"spiral/common": "^0.9",
"spiral/models": "^0.9",
"spiral/tokenizer": "^0.9",
"spiral/reactor": "^0.9",
"spiral/security": "^1.0.0",
"spiral/database": "^0.9",
"spiral/migrations": "^0.9",
"spiral/orm": "^0.9",
"spiral/stempler": "^0.9",
"spiral/common": "^1.0",
"spiral/reactor": "^1.0",
"spiral/security": "^1.0",
"spiral/database": "^1.0",
"spiral/migrations": "^1.0",
"spiral/orm": "^1.0",
"spiral/stempler": "^1.0",
"zendframework/zend-diactoros": "^1.1",
"twig/twig": "^2.1",
"symfony/console": "^3.2",
Expand All @@ -31,7 +29,7 @@
"vlucas/phpdotenv": "^2.1"
},
"require-dev": {
"spiral/odm": "^0.9",
"spiral/odm": "^1.0",
"phpunit/phpunit": "~5.0",
"mockery/mockery": "^0.9.4"
},
Expand Down
7 changes: 2 additions & 5 deletions source/Spiral/Core/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,8 @@
abstract class Core extends AbstractCore implements DirectoriesInterface
{
use SharedTrait;

/**
* I need this constant for Symfony Console. :/
*/
const VERSION = '0.9.0-rc';

const VERSION = '1.0.0';

/**
* Memory section for bootloaders cache.
Expand Down

0 comments on commit 27047aa

Please sign in to comment.