Skip to content

Commit a1f3cb5

Browse files
author
Fady Michel
committed
migrate to php7.4
1 parent 1f47818 commit a1f3cb5

9 files changed

+260
-463
lines changed

README.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
# php-dotenv
22
# Loads environment variables from .env file to getenv(), $_ENV and $_SERVER.
3-
[![Latest Stable Version](https://poser.pugx.org/devcoder-xyz/php-dotenv/v)](//packagist.org/packages/devcoder-xyz/php-dotenv) [![Total Downloads](https://poser.pugx.org/devcoder-xyz/php-dotenv/downloads)](//packagist.org/packages/devcoder-xyz/php-dotenv) [![Latest Unstable Version](https://poser.pugx.org/devcoder-xyz/php-dotenv/v/unstable)](//packagist.org/packages/devcoder-xyz/php-dotenv) [![License](https://poser.pugx.org/devcoder-xyz/php-dotenv/license)](//packagist.org/packages/devcoder-xyz/php-dotenv)
3+
[![Latest Stable Version](https://poser.pugx.org/devcoder-xyz/php-dotenv/v)](https://packagist.org/packages/devcoder-xyz/php-dotenv) [![Total Downloads](https://poser.pugx.org/devcoder-xyz/php-dotenv/downloads)](https://packagist.org/packages/devcoder-xyz/php-dotenv) [![Latest Unstable Version](https://poser.pugx.org/devcoder-xyz/php-dotenv/v/unstable)](//packagist.org/packages/devcoder-xyz/php-dotenv) [![License](https://poser.pugx.org/devcoder-xyz/php-dotenv/license)](https://packagist.org/packages/devcoder-xyz/php-dotenv)
4+
[![PHP Version Require](http://poser.pugx.org/devcoder-xyz/php-dotenv/require/php)](https://packagist.org/packages/devcoder-xyz/php-dotenv)
5+
6+
## Installation
7+
8+
Use [Composer](https://getcomposer.org/)
9+
10+
### Composer Require
11+
```
12+
composer require devcoder-xyz/php-router
13+
```
14+
15+
## Requirements
16+
17+
* PHP version 7.4
18+
19+
**How to use ?**
20+
421
```
522
APP_ENV=dev
623
DATABASE_DNS=mysql:host=localhost;dbname=test;

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"license": "MIT",
66
"authors": [
77
{
8-
"name": "Fad M.R",
9-
"email": "fadymichel@devcoder.xyz"
8+
"name": "F.Michel",
9+
"email": "dev@devcoder.xyz"
1010
}
1111
],
1212
"autoload": {
@@ -16,7 +16,7 @@
1616
}
1717
},
1818
"require": {
19-
"php": ">=7.3"
19+
"php": ">=7.4"
2020
},
2121
"require-dev": {
2222
"phpunit/phpunit": "^9.4"

0 commit comments

Comments
 (0)