Fix tests and 4.1.x deprecations
Showing
.gitignore
100644 → 100755
File mode changed from 100644 to 100755
.gitlab/merge_request_templates/default.md
100644 → 100755
File mode changed from 100644 to 100755
Dockerfile
100644 → 100755
File mode changed from 100644 to 100755
README.md
100644 → 100755
File mode changed from 100644 to 100755
app/.htaccess
100644 → 100755
File mode changed from 100644 to 100755
app/AppCache.php
100644 → 100755
File mode changed from 100644 to 100755
app/AppKernel.php
100644 → 100755
app/Resources/views/base.html.twig
100644 → 100755
File mode changed from 100644 to 100755
app/Resources/views/default/index.html.twig
100644 → 100755
File mode changed from 100644 to 100755
app/autoload.php
100644 → 100755
File mode changed from 100644 to 100755
app/config/config.yml
100644 → 100755
app/config/config_dev.yml
100644 → 100755
app/config/config_prod.yml
100644 → 100755
File mode changed from 100644 to 100755
app/config/config_test.yml
100644 → 100755
File mode changed from 100644 to 100755
app/config/parameters.yml.dist
100644 → 100755
File mode changed from 100644 to 100755
app/config/routing.yml
100644 → 100755
File mode changed from 100644 to 100755
app/config/routing_dev.yml
100644 → 100755
File mode changed from 100644 to 100755
app/config/security.yml
100644 → 100755
File mode changed from 100644 to 100755
app/config/services.yml
100644 → 100755
books/activity-ical.yml
100644 → 100755
File mode changed from 100644 to 100755
books/chatbot.yml
100644 → 100755
File mode changed from 100644 to 100755
books/civiproxy.yml
100644 → 100755
File mode changed from 100644 to 100755
books/civirules.yml
100644 → 100755
File mode changed from 100644 to 100755
books/civisepa.yml
100644 → 100755
File mode changed from 100644 to 100755
books/dev.yml
100644 → 100755
File mode changed from 100644 to 100755
books/discount.yml
100644 → 100755
File mode changed from 100644 to 100755
books/entitytemplates.yml
100644 → 100755
File mode changed from 100644 to 100755
books/fastactionlinks.yml
100644 → 100755
File mode changed from 100644 to 100755
books/flexmailer.yml
100644 → 100755
File mode changed from 100644 to 100755
books/gdpr.yml
100644 → 100755
File mode changed from 100644 to 100755
books/smartdebit.yml
100644 → 100755
File mode changed from 100644 to 100755
books/sms-conversation.yml
100644 → 100755
File mode changed from 100644 to 100755
books/sparkpost.yml
100644 → 100755
File mode changed from 100644 to 100755
books/sysadmin.yml
100644 → 100755
File mode changed from 100644 to 100755
books/transactionalemails.yml
100644 → 100755
File mode changed from 100644 to 100755
books/user.yml
100644 → 100755
books/volunteer.yml
100644 → 100755
File mode changed from 100644 to 100755
composer.json
100644 → 100755
... | ... | @@ -18,39 +18,28 @@ |
}, | ||
"require": { | ||
"php": "^7.0", | ||
"symfony/symfony": "^3.0", | ||
"symfony/symfony": "^4.1", | ||
"doctrine/orm": "^2.5", | ||
"twig/twig": "^1.33", | ||
"twig/twig": "^2.5", | ||
"doctrine/doctrine-bundle": "^1.6", | ||
"doctrine/doctrine-cache-bundle": "^1.2", | ||
"symfony/swiftmailer-bundle": "^2.3", | ||
"symfony/monolog-bundle": "^2.8", | ||
"sensio/distribution-bundle": "^5.0", | ||
"sensio/framework-extra-bundle": "^3.0.2", | ||
"symfony/swiftmailer-bundle": "^3.2", | ||
"symfony/monolog-bundle": "^3.3", | ||
"sensio/framework-extra-bundle": "^5.2", | ||
"incenteev/composer-parameter-handler": "^2.0", | ||
"symfony/web-server-bundle": "^3.3" | ||
"phpunit/phpunit": "^7.4" | ||
}, | ||
"require-dev": { | ||
"sensio/generator-bundle": "^3.0", | ||
"symfony/phpunit-bridge": "^3.0", | ||
"phpunit/phpunit": "^5.7" | ||
"symfony/maker-bundle": "^1.7", | ||
"symfony/phpunit-bridge": "^4.1", | ||
"symfony/web-server-bundle": "^4.1" | ||
}, | ||
"scripts": { | ||
"post-install-cmd": [ | ||
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", | ||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | ||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | ||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | ||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile", | ||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget" | ||
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters" | ||
], | ||
"post-update-cmd": [ | ||
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", | ||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", | ||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", | ||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", | ||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile", | ||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget" | ||
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters" | ||
] | ||
}, | ||
"extra": { | ||
... | ... |
This diff is collapsed.
phpunit.xml.dist
100644 → 100755
src/.htaccess
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/AppBundle.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Command/DocsListCommand.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Command/DocsPublishCommand.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Controller/PublishController.php
100644 → 100755
src/AppBundle/Controller/ReadController.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Model/Book.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Model/Language.php
100644 → 100755
src/AppBundle/Model/Library.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Model/Version.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Model/WebhookEvent.php
100644 → 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
src/AppBundle/Resources/theme-customizations/material/main.html
100644 → 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
src/AppBundle/Utils/FileSystem.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Utils/GitTools.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Utils/LocaleTools.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Utils/MkDocs.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Utils/Paths.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Utils/Publisher.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Utils/Redirecter.php
100644 → 100755
File mode changed from 100644 to 100755
src/AppBundle/Utils/StringTools.php
100644 → 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
src/AppBundle/Utils/WebhookProcessor.php
100644 → 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
tests/AppBundle/Files/books/test.yml
100644 → 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
tests/AppBundle/Model/LibraryTest.php
100644 → 100755
tests/AppBundle/Utils/LocaleToolsTest.php
100644 → 100755
tests/AppBundle/Utils/StringToolsTest.php
100644 → 100755
tests/AppBundle/Utils/WebhookProcessorTest.php
100644 → 100755
var/SymfonyRequirements.php
100644 → 100755
var/repos/.gitkeep
100644 → 100755
File mode changed from 100644 to 100755
var/sessions/.gitkeep
100644 → 100755
File mode changed from 100644 to 100755
web/.htaccess
100644 → 100755
File mode changed from 100644 to 100755
web/app.php
100644 → 100755
web/app_dev.php
100644 → 100755