Skip to content

Commit

Permalink
#60 Allow paid edition databases: add more edition_ids
Browse files Browse the repository at this point in the history
  • Loading branch information
jspeedz committed Sep 10, 2020
1 parent 4cb70da commit f7a7575
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/DependencyInjection/Configuration.php
Expand Up @@ -100,7 +100,16 @@ private function getDatabaseNode(): ArrayNodeDefinition

$database_node->children()->scalarNode('license');

$database_node->children()->enumNode('edition')->values(['GeoLite2-ASN', 'GeoLite2-City', 'GeoLite2-Country', 'GeoIP2-City', 'GeoIP2-Country']);
$database_node->children()->enumNode('edition')->values([
'GeoLite2-ASN',
'GeoLite2-City',
'GeoLite2-Country',
'GeoIP2-City',
'GeoIP2-Country',
'GeoIP2-Anonymous-IP',
'GeoIP2-Domain',
'GeoIP2-ISP'
]);

return $root_node;
}
Expand Down

0 comments on commit f7a7575

Please sign in to comment.