]> Raphaël G. Git Repositories - airbundle/blobdiff - DependencyInjection/Configuration.php
Add creator copyright infos
[airbundle] / DependencyInjection / Configuration.php
index 84348332b05581115859fc82c1686b48c9f74805..da04209201395112915f6a92880d341ce5111b5a 100644 (file)
@@ -53,6 +53,8 @@ class Configuration implements ConfigurationInterface {
                                        167 => '@RapsysAir/png/icon.167.png',
                                        //iPad touch icon
                                        152 => '@RapsysAir/png/icon.152.png',
+                                       //iOS7
+                                       120 => '@RapsysAir/png/icon.120.png',
 
                                        //For windows
                                        //XXX: see https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/dn255024(v=vs.85)
@@ -65,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',
@@ -106,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')