Skip to content

Commit e3bf388

Browse files
committed
Updating documentation
1 parent fe564fc commit e3bf388

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -355,24 +355,24 @@ class MyCli extends AbstractCliApplication
355355

356356
## Installation via Composer
357357

358-
Add `"joomla/application": "~3.0"` to the require block in your composer.json and then run `composer install`.
358+
Add `"joomla/application": "~4.0"` to the require block in your composer.json and then run `composer install`.
359359

360360
```json
361361
{
362362
"require": {
363-
"joomla/application": "~3.0"
363+
"joomla/application": "~4.0"
364364
}
365365
}
366366
```
367367

368368
Alternatively, you can simply run the following from the command line:
369369

370370
```sh
371-
composer require joomla/application "~3.0"
371+
composer require joomla/application "~4.0"
372372
```
373373

374374
If you want to include the test sources, use
375375

376376
```sh
377-
composer require --prefer-source joomla/application "~3.0"
377+
composer require --prefer-source joomla/application "~4.0"
378378
```

docs/v3-to-v4-update.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The following changes were made to the Application package between v3 and v4.
44

5+
### Minimum supported PHP version raised
6+
7+
All Framework packages now require PHP 8.3 or newer.
8+
59
### Access to input data
610

711
Accessing the input data in the input attribute of the application can now only be done via the `getInput()`.

0 commit comments

Comments
 (0)