Skip to content

Commit 9251437

Browse files
authored
Merge pull request #139 from joomla/v3
Improving status page
2 parents f6e253e + ef0c0b1 commit 9251437

23 files changed

+3576
-2234
lines changed

.drone.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ clone:
66

77
steps:
88
- name: composer
9-
image: joomlaprojects/docker-images:php7.4
9+
image: joomlaprojects/docker-images:php8.1
1010
commands:
1111
- php -v
1212
- composer update
@@ -16,14 +16,14 @@ steps:
1616
path: /tmp/composer-cache
1717

1818
- name: phpcs
19-
image: joomlaprojects/docker-images:php7.4
19+
image: joomlaprojects/docker-images:php8.1
2020
depends_on:
2121
- composer
2222
commands:
2323
- vendor/bin/phpcs -p --report=full --extensions=php --standard=ruleset.xml src/ bin/ www/
2424

2525
- name: phpmd
26-
image: joomlaprojects/docker-images:php7.4
26+
image: joomlaprojects/docker-images:php8.1
2727
depends_on:
2828
- composer
2929
commands:
@@ -35,23 +35,23 @@ steps:
3535
failure: ignore
3636

3737
- name: phpstan
38-
image: joomlaprojects/docker-images:php7.4
38+
image: joomlaprojects/docker-images:php8.1
3939
depends_on:
4040
- composer
4141
commands:
4242
- vendor/bin/phpstan analyse src
4343
failure: ignore
4444

4545
- name: phploc
46-
image: joomlaprojects/docker-images:php7.4
46+
image: joomlaprojects/docker-images:php8.1
4747
depends_on:
4848
- composer
4949
commands:
5050
- phploc src
5151
failure: ignore
5252

5353
- name: phpcpd
54-
image: joomlaprojects/docker-images:php7.4
54+
image: joomlaprojects/docker-images:php8.1
5555
depends_on:
5656
- composer
5757
commands:
@@ -88,6 +88,6 @@ volumes:
8888

8989
---
9090
kind: signature
91-
hmac: cfdb9d635b44bffeaf7b3f291a2823a4656b95a052fe78508241b7f87169bb80
91+
hmac: 3976132d114c361d6cd7b0429b51b729adcea4f1065ccba4e589889cad94ae12
9292

9393
...

composer.json

Lines changed: 28 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,35 @@
44
"homepage": "http://github.com/joomla/framework.joomla.org",
55
"license": "GPL-2.0-or-later",
66
"require": {
7-
"php": "^7.4",
7+
"php": "^8.1",
88
"ext-json": "*",
99
"ext-pdo": "*",
1010
"fig/link-util": "^1.1",
11-
"joomla/application": "^2.0",
12-
"joomla/console": "^2.0",
13-
"joomla/controller": "^2.0",
14-
"joomla/database": "^2.0",
15-
"joomla/di": "^2.0",
16-
"joomla/event": "^2.0",
17-
"joomla/filesystem": "^2.0",
18-
"joomla/filter": "^2.0",
19-
"joomla/github": "^2.0@dev",
20-
"joomla/http": "^2.0",
21-
"joomla/input": "^2.0",
22-
"joomla/model": "^2.0",
23-
"joomla/preload": "^2.0",
24-
"joomla/registry": "^2.0",
25-
"joomla/renderer": "^2.0",
26-
"joomla/router": "^2.0",
27-
"joomla/string": "^2.0",
28-
"joomla/uri": "^2.0",
29-
"joomla/utilities": "^2.0",
30-
"joomla/view": "^2.0",
31-
"laminas/laminas-diactoros": "^2.3",
11+
"joomla/application": "^3.0",
12+
"joomla/console": "^3.0",
13+
"joomla/controller": "^3.0",
14+
"joomla/database": "^3.0",
15+
"joomla/di": "^3.0",
16+
"joomla/event": "^3.0",
17+
"joomla/filesystem": "^3.0",
18+
"joomla/filter": "^3.0",
19+
"joomla/github": "^3.0@dev",
20+
"joomla/http": "^3.0",
21+
"joomla/input": "^3.0",
22+
"joomla/model": "^3.0",
23+
"joomla/preload": "^3.0",
24+
"joomla/registry": "^3.0",
25+
"joomla/renderer": "^3.0",
26+
"joomla/router": "^3.0",
27+
"joomla/string": "^3.0",
28+
"joomla/uri": "^3.0",
29+
"joomla/utilities": "^3.0",
30+
"joomla/view": "^3.0",
31+
"laminas/laminas-diactoros": "^2.17",
3232
"monolog/monolog": "^2.1",
3333
"psr/link": "^1.0",
3434
"ramsey/uuid": "^4.0.1",
35-
"robmorgan/phinx": "^0.14.0",
35+
"robmorgan/phinx": "^0.16.1",
3636
"symfony/asset": "^5.1.2",
3737
"symfony/process": "^5.1.2",
3838
"symfony/web-link": "^5.1.2",
@@ -41,14 +41,12 @@
4141
"twig/twig": "^3.0"
4242
},
4343
"require-dev": {
44-
"friendsofphp/php-cs-fixer": "^3.13.2",
45-
"squizlabs/php_codesniffer": "~3.0",
46-
"maximebf/debugbar": "^1.16.3"
44+
"friendsofphp/php-cs-fixer": "^3.59",
45+
"squizlabs/php_codesniffer": "~3.10",
46+
"maximebf/debugbar": "^1.22.3"
4747
},
4848
"replace": {
49-
"paragonie/random_compat": "*",
50-
"symfony/polyfill-php70": "*",
51-
"symfony/polyfill-php72": "*"
49+
"paragonie/random_compat": "*"
5250
},
5351
"autoload": {
5452
"psr-4": {
@@ -57,7 +55,7 @@
5755
},
5856
"config": {
5957
"platform": {
60-
"php": "7.4.0"
58+
"php": "8.1.0"
6159
}
6260
}
6361
}

0 commit comments

Comments
 (0)