File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -355,24 +355,24 @@ class MyCli extends AbstractCliApplication
355
355
356
356
## Installation via Composer
357
357
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 ` .
359
359
360
360
``` json
361
361
{
362
362
"require" : {
363
- "joomla/application" : " ~3 .0"
363
+ "joomla/application" : " ~4 .0"
364
364
}
365
365
}
366
366
```
367
367
368
368
Alternatively, you can simply run the following from the command line:
369
369
370
370
``` sh
371
- composer require joomla/application " ~3 .0"
371
+ composer require joomla/application " ~4 .0"
372
372
```
373
373
374
374
If you want to include the test sources, use
375
375
376
376
``` sh
377
- composer require --prefer-source joomla/application " ~3 .0"
377
+ composer require --prefer-source joomla/application " ~4 .0"
378
378
```
Original file line number Diff line number Diff line change 2
2
3
3
The following changes were made to the Application package between v3 and v4.
4
4
5
+ ### Minimum supported PHP version raised
6
+
7
+ All Framework packages now require PHP 8.3 or newer.
8
+
5
9
### Access to input data
6
10
7
11
Accessing the input data in the input attribute of the application can now only be done via the ` getInput() ` .
You can’t perform that action at this time.
0 commit comments