mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 05:31:48 +02:00
- Update libs
This commit is contained in:
parent
207946520b
commit
668c86d97a
5 changed files with 664 additions and 132 deletions
14
.gitignore
vendored
14
.gitignore
vendored
|
@ -12,3 +12,17 @@
|
||||||
###> symfony/web-server-bundle ###
|
###> symfony/web-server-bundle ###
|
||||||
/.web-server-pid
|
/.web-server-pid
|
||||||
###< symfony/web-server-bundle ###
|
###< symfony/web-server-bundle ###
|
||||||
|
|
||||||
|
###> symfony/phpunit-bridge ###
|
||||||
|
.phpunit
|
||||||
|
.phpunit.result.cache
|
||||||
|
/phpunit.xml
|
||||||
|
###< symfony/phpunit-bridge ###
|
||||||
|
/bin/phpunit
|
||||||
|
/tests/
|
||||||
|
/tests/bootstrap.php
|
||||||
|
/var/
|
||||||
|
/vendor/
|
||||||
|
/.env.test
|
||||||
|
/composer
|
||||||
|
/phpunit.xml.dist
|
||||||
|
|
|
@ -25,13 +25,17 @@
|
||||||
"ext-json": "*"
|
"ext-json": "*"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
"symfony/phpunit-bridge": "^7.0",
|
||||||
"symfony/web-server-bundle": "4.3.*"
|
"symfony/web-server-bundle": "4.3.*"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"preferred-install": {
|
"preferred-install": {
|
||||||
"*": "dist"
|
"*": "dist"
|
||||||
},
|
},
|
||||||
"sort-packages": true
|
"sort-packages": true,
|
||||||
|
"allow-plugins": {
|
||||||
|
"symfony/flex": true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
|
758
composer.lock
generated
758
composer.lock
generated
File diff suppressed because it is too large
Load diff
15
symfony.lock
15
symfony.lock
|
@ -154,6 +154,21 @@
|
||||||
"symfony/options-resolver": {
|
"symfony/options-resolver": {
|
||||||
"version": "v4.3.3"
|
"version": "v4.3.3"
|
||||||
},
|
},
|
||||||
|
"symfony/phpunit-bridge": {
|
||||||
|
"version": "7.0",
|
||||||
|
"recipe": {
|
||||||
|
"repo": "github.com/symfony/recipes",
|
||||||
|
"branch": "main",
|
||||||
|
"version": "5.1",
|
||||||
|
"ref": "2f91477d6efaed3fb857db87480f7d07d31cbb3e"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"./.env.test",
|
||||||
|
"./bin/phpunit",
|
||||||
|
"./phpunit.xml.dist",
|
||||||
|
"./tests/bootstrap.php"
|
||||||
|
]
|
||||||
|
},
|
||||||
"symfony/polyfill-intl-icu": {
|
"symfony/polyfill-intl-icu": {
|
||||||
"version": "v1.12.0"
|
"version": "v1.12.0"
|
||||||
},
|
},
|
||||||
|
|
|
@ -48,8 +48,9 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4" style="margin-top: 10px; text-align: center;">
|
<div class="col-md-4" style="margin-top: 10px; text-align: center;">
|
||||||
{{ 'common.author'|trans }}: Thomas<br/>
|
{{ 'common.author'|trans }}: Thomas<br/>
|
||||||
Mastodon: <a href="https://toot.fedilab.app/@fedilab" target="_blank">@Fedilab</a><br/>
|
Mastodon: <a href="https://toot.fedilab.app/@apps" target="_blank">@apps</a><br/>
|
||||||
Framagit: <a href="https://framagit.org/tom79/" target="_blank">@tom79</a><br/>
|
Framagit: <a href="https://framagit.org/tom79/" target="_blank">@tom79</a><br/>
|
||||||
|
Codeberg: <a href="https://codeberg.org/tom79/" target="_blank">@tom79</a><br/>
|
||||||
Github: <a href="https://github.com/stom79/" target="_blank">@stom79</a><br/>
|
Github: <a href="https://github.com/stom79/" target="_blank">@stom79</a><br/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4" style="margin-top: 10px; text-align: center;">
|
<div class="col-md-4" style="margin-top: 10px; text-align: center;">
|
||||||
|
|
Loading…
Add table
Reference in a new issue