README : update composer install method

This commit is contained in:
2022-07-20 13:38:37 +02:00
parent 9e19c31543
commit e0fdda6fb8

View File

@@ -21,3 +21,15 @@ Create a composer.json file with content :
}
}
```
Install the last version : `composer install`
Then use it :
```php
<?php
require_once ("vendor/autoload.php");
$version = new Domframework\Version();
var_dump($version::version());
```