Skip to content

Commit 79e2295

Browse files
committed
update requirements
1 parent e1a21dd commit 79e2295

File tree

3 files changed

+14
-20
lines changed

3 files changed

+14
-20
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 DevNet Framework
3+
Copyright (c) DevNet Framework
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,23 @@
11
# DevNet Framework
2-
This dependency is the main repository of **DevNet Framework**, and it includes the following packages:
3-
- [devnet/core](https://github.com/DevNet-Framework/core) a runtime and base class library that is essential for all DevNet applications and packages.
4-
- [devnet/cli](https://github.com/DevNet-Framework/cli) a command-line interface tool, for creating console applications and managing DevNet projects.
5-
- [devnet/web](https://github.com/DevNet-Framework/web) a collection of web components that helps to create modern web applications and web APIs.
6-
- [devnet/entity](https://github.com/DevNet-Framework/entity) an object-relational mapping system that helps to manipulate databases in an object-oriented way.
2+
This dependency is a meta-package that will install all the libraries of **DevNet Framework**
73

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

12-
## Installation
13-
You can install DevNet Framework in your project, by running the following command in the terminal:
14-
15-
```bash
16-
composer require devnet/framework
17-
```
8+
>**Note:** If you are using composer on a Linux operating system, please make sure that you have added the path "composer/vendor/bin" to the system environment variables in the ".bashrc" file as follows:
9+
>`echo 'export PATH="$PATH:$HOME/.config/composer/vendor/bin"' >> ~/.bashrc`
1810
19-
You can install DevNet Framework globally in your system, by run the following command in the terminal:
11+
## Installation
12+
You can install DevNet Framework globally in your system, by running the following command in the terminal:
2013
```
2114
composer global require devnet/framework
2215
```
2316

24-
>**Note:** when you install composer in Linux operating system, please do not forget to add composer/vendor/bin into the system environment variables inside the file .bashrc like this:
25-
>`echo 'export PATH="$PATH:$HOME/.config/composer/vendor/bin"' >> ~/.bashrc`
17+
Or, you can install DevNet Framework locally in your project, by running the following command:
18+
```
19+
composer require devnet/framework
20+
```
2621

2722
## Documentation
2823
Full documentation on how to use **DevNet Framework** is available at [devnet-framework.github.io](https://devnet-framework.github.io)

composer.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devnet/framework",
3-
"description": "The DevNet Framework Repository",
3+
"description": "The DevNet Framework Installer",
44
"type": "metapackage",
55
"license": "MIT",
66
"authors": [
@@ -11,9 +11,8 @@
1111
],
1212
"require": {
1313
"php": "^8.1",
14-
"devnet/core": "1.0.*",
15-
"devnet/cli": "1.0.*",
16-
"devnet/web": "1.0.*",
17-
"devnet/entity": "1.0.*"
14+
"devnet/cli": "1.1.*",
15+
"devnet/core": "1.1.*",
16+
"devnet/orm": "1.1.*"
1817
}
1918
}

0 commit comments

Comments
 (0)