package Cpanel::Easy::PHP5::SQLite3;

# cpanel - Cpanel/Easy/PHP5/SQLite3.pm            Copyright(c) 2011 cPanel, Inc.
#                                                           All rights Reserved.
# copyright@cpanel.net                                         http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited

our $easyconfig = {
    'name'    => 'SQLite3',
    'reverse' => 1,
    'url'     => 'http://www.php.net/manual/en/book.sqlite3.php',
    'skip'    => 1,
    'step'    => {
        '0' => {
            'name'    => 'to config options',
            'command' => sub {
                my ($self) = @_;
                $self->add_to_configure( { '--without-sqlite3' => '' } );
                return ( 1, 'Ok' );
            },

        },
    },
};

1;
