Skip to content

Commit

Permalink
Fixed dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
afonzeca committed Nov 24, 2018
1 parent 30685f3 commit 30b6b6c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## "Arun" (CLI Microframework) for PHP7.2+ - Version 0.44-alpha - (C) 2018 by Angelo Fonzeca
## "Arun" (CLI Microframework) for PHP7.2+ - Version 0.44.1-alpha - (C) 2018 by Angelo Fonzeca

<p align="center">
<img src="docs/images/arunlogo.jpg">
Expand Down Expand Up @@ -31,7 +31,7 @@ managing commands and associated code (your console application).
The Arun Microframework has an "out-of-the-box" native support for Dependency Injection by using _Containers_ and _Autowire_
(thanks to PHP-DI) and an organized tree for easily writing your code in a simple way.

Starting from the 0.44-alpha version, Arun can auto-generate code for fast and easy development (See Chapter 'Code Auto-Generation' for further information).
Starting from the 0.44.1-alpha version, Arun can auto-generate code for fast and easy development (See Chapter 'Code Auto-Generation' for further information).

_DISCLAIMER: This product is a prototype at an early stage of development and could have security issues... DO NOT USE IT IN PRODUCTION ENVIRONMENTS_

Expand Down Expand Up @@ -94,7 +94,7 @@ Anyway... Too much words... Now Let's making some code... ;-)
You need php 7.2 and Composer installed (https://getcomposer.org) on your machine (tested only on Linux/Ubuntu/Mint).

```bash
composer create-project afonzeca/arun:v0.44-alpha myprojectname
composer create-project afonzeca/arun:v0.44.1-alpha myprojectname
```

NOTE:
Expand All @@ -115,7 +115,7 @@ If you want skip examples and read about auto-generation code directly (not reco
Before starting let's create the first project with:

```bash
composer create-project afonzeca/arun:v0.44-alpha MyFirstArunApplication
composer create-project afonzeca/arun:v0.44.1-alpha MyFirstArunApplication
cd MyFirstArunApplication
```

Expand Down Expand Up @@ -194,7 +194,7 @@ Arun will do the job for you...
```bash
./arun table

Arun Microframework 0.44-alpha - (C) 2018 by Angelo Fonzeca (Apache License 2.0)
Arun Microframework 0.44.1-alpha - (C) 2018 by Angelo Fonzeca (Apache License 2.0)

Table: This Domain allows to interact with tables

Expand Down Expand Up @@ -295,7 +295,7 @@ Now you can call Arun with one, two, or three parameters...
If you type ./arun table:create without parameters you will receive an automatic help... like this:

```
Arun Microframework 0.44-alpha - (C) 2018 by Angelo Fonzeca (Apache License 2.0)
Arun Microframework 0.44.1-alpha - (C) 2018 by Angelo Fonzeca (Apache License 2.0)
Table: Table creation
Expand All @@ -315,7 +315,7 @@ create
if you type ./arun without commands, actions, etc. you will receive a "global help" like this:

```
Arun Microframework 0.44-alpha - (C) 2018 by Angelo Fonzeca (Apache License 2.0)
Arun Microframework 0.44.1-alpha - (C) 2018 by Angelo Fonzeca (Apache License 2.0)
Default: A Convention Over Configuration CLI Micro-Framework
Expand Down Expand Up @@ -562,7 +562,7 @@ ARUN has a built-in domain called "gen" dedicated to code-generation. Let's see
./arun gen
Arun Microframework 0.44-alpha - (C) 2018 by Angelo Fonzeca (Apache License 2.0)
Arun Microframework 0.44.1-alpha - (C) 2018 by Angelo Fonzeca (Apache License 2.0)
Gen: Generates code for Arun Development Speed-up
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"ext-mbstring": "*",
"php-di/php-di": "^6.0",
"vlucas/phpdotenv": "^2.5",
"afonzeca/arun-core": "v0.44-alpha",
"afonzeca/arun-core": "v0.44.1-alpha",
"doctrine/annotations": "^1.6",
"doctrine/doctrine-bundle": "^1.9",
"doctrine/doctrine-module": "^2.1",
Expand Down

0 comments on commit 30b6b6c

Please sign in to comment.