Skip to content

Commit e5822d6

Browse files
authored
Use composer install, update dependencies (#17)
1 parent 0112bb8 commit e5822d6

File tree

7 files changed

+1688
-3776
lines changed

7 files changed

+1688
-3776
lines changed

.github/workflows/symfony.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
restore-keys: ${{ runner.os }}-${{ matrix.php-versions }}-composer-
4848

4949
- name: Install Composer dependencies
50-
run: composer update --no-progress
50+
run: composer install --no-progress
5151

5252
- name: Update database schema
5353
run: php bin/console d:s:u -f

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ yarn-error.log
2626
###< squizlabs/php_codesniffer ###
2727

2828
###> friendsofphp/php-cs-fixer ###
29-
/.php_cs
30-
/.php_cs.cache
29+
/.php-cs-fixer.php
30+
/.php-cs-fixer.cache
3131
###< friendsofphp/php-cs-fixer ###

.php-cs-fixer.dist.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
return (new PhpCsFixer\Config())
99
->setRules([
1010
'@Symfony' => true,
11-
'array_syntax' => ['syntax' => 'short'],
1211
])
1312
->setFinder($finder)
14-
->setCacheFile('.php-cs-fixer.cache')
1513
;

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
"php": ">=7.3.0",
1414
"ext-ctype": "*",
1515
"ext-iconv": "*",
16-
"doctrine/doctrine-bundle": "^2.3",
16+
"doctrine/doctrine-bundle": "^2.4",
1717
"sensio/framework-extra-bundle": "^6.1",
1818
"symfony/apache-pack": "^1.0",
1919
"symfony/console": "5.3.*",
2020
"symfony/dotenv": "5.3.*",
21-
"symfony/flex": "^1.13",
21+
"symfony/flex": "^1.14",
2222
"symfony/form": "5.3.*",
2323
"symfony/framework-bundle": "5.3.*",
2424
"symfony/mailer": "5.3.*",
@@ -36,17 +36,17 @@
3636
"codeception/module-phpbrowser": "^1.0",
3737
"codeception/module-symfony": "^2.0 | *@dev",
3838
"doctrine/doctrine-fixtures-bundle": "^3.4",
39-
"friendsofphp/php-cs-fixer": "^2.19",
39+
"friendsofphp/php-cs-fixer": "^3.0",
4040
"phpmd/phpmd": "^2.10",
41-
"rector/rector": "^0.10",
41+
"rector/rector": "^0.11",
4242
"roave/security-advisories": "dev-latest",
4343
"squizlabs/php_codesniffer": "^3.6",
4444
"symfony/debug-bundle": "5.3.*",
45-
"symfony/maker-bundle": "^1.31",
45+
"symfony/maker-bundle": "^1.33",
4646
"symfony/twig-bundle": "5.3.*",
4747
"symfony/var-dumper": "5.3.*",
4848
"symfony/web-profiler-bundle": "5.3.*",
49-
"vimeo/psalm": "^4.7"
49+
"vimeo/psalm": "^4.9"
5050
},
5151
"config": {
5252
"optimize-autoloader": true,

0 commit comments

Comments
 (0)