From: Raphaël Gertz Date: Tue, 23 Feb 2021 23:21:39 +0000 (+0100) Subject: Add creator copyright infos X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/5737de41f2e865d28d8316f194c3789a84b556b9 Add creator copyright infos Update copyright years --- diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index e2eb62d..da04209 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -67,8 +67,11 @@ class Configuration implements ConfigurationInterface { 'url' => 'rapsys_air' ], 'copy' => [ + 'by' => 'Created by Raphaël', + 'link' => 'https://rapsys.eu', 'long' => 'All rights reserved', - 'short' => 'Copyright 2019' + 'short' => 'Copyright 2019-2021', + 'title' => 'Rapsys' ], 'contact' => [ 'name' => 'John Doe', @@ -108,8 +111,11 @@ class Configuration implements ConfigurationInterface { ->arrayNode('copy') ->addDefaultsIfNotSet() ->children() + ->scalarNode('by')->defaultValue($defaults['copy']['by'])->end() + ->scalarNode('link')->defaultValue($defaults['copy']['link'])->end() ->scalarNode('long')->defaultValue($defaults['copy']['long'])->end() ->scalarNode('short')->defaultValue($defaults['copy']['short'])->end() + ->scalarNode('title')->defaultValue($defaults['copy']['title'])->end() ->end() ->end() ->arrayNode('contact')