Skip to content

Commit

Permalink
rename this package to 'console'
Browse files Browse the repository at this point in the history
  • Loading branch information
Maometos committed Mar 13, 2024
1 parent b19d748 commit 3f135b1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# DevNet Console Template
This package is a Console application template of DevNet Framework.
This package is a Console application template for DevNet Framework.

## Requirements
- [PHP](https://www.php.net/) version 8.1 or higher
- [Composer](https://getcomposer.org/) version 2.0 or higher

## Installation
To create a DevNet Console Application project using composer, run the following command in your terminal:
You can use DevNet CLI to create a console application project by running the following command in your terminal:
```
composer create-project devnet/console-template [project-name]
devnet new console --project [project-Name]
```
Or using DevNet CLI
Or using composer
```
devnet new console --project [project-name]
composer create-project devnet/console [project-Name]
```

## Execution
Expand Down
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "devnet/console-template",
"name": "devnet/console",
"description": "Console Application",
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true
"prefer-stable": true,
"require": {
"devnet/system": "1.1.*"
}
}

0 comments on commit 3f135b1

Please sign in to comment.