From 3af0abbb13d5816a54fed16501dcbaf919f1c995 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 10 Jan 2017 12:21:56 +0200 Subject: [PATCH] Clean up constants --- app/Http/routes.php | 578 ----------------------- app/Libraries/Constants.php | 580 +++++++++++++++++++++++ composer.json | 3 +- composer.lock | 891 +++++++++++++++++++----------------- 4 files changed, 1043 insertions(+), 1009 deletions(-) create mode 100644 app/Libraries/Constants.php diff --git a/app/Http/routes.php b/app/Http/routes.php index abe20b1eab4a..3fbdd969b5e0 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -359,584 +359,6 @@ Route::get('/comments/feed', function() { return Redirect::to(NINJA_WEB_URL.'/comments/feed', 301); }); -if (!defined('CONTACT_EMAIL')) { - define('APP_NAME', env('APP_NAME', 'Invoice Ninja')); - define('CONTACT_EMAIL', config('mail.from.address')); - define('CONTACT_NAME', config('mail.from.name')); - define('SITE_URL', config('app.url')); - - define('ENV_DEVELOPMENT', 'local'); - define('ENV_STAGING', 'staging'); - - define('RECENTLY_VIEWED', 'recent_history'); - - define('ENTITY_CLIENT', 'client'); - define('ENTITY_CONTACT', 'contact'); - define('ENTITY_INVOICE', 'invoice'); - define('ENTITY_DOCUMENT', 'document'); - define('ENTITY_INVOICE_ITEM', 'invoice_item'); - define('ENTITY_INVITATION', 'invitation'); - define('ENTITY_RECURRING_INVOICE', 'recurring_invoice'); - define('ENTITY_PAYMENT', 'payment'); - define('ENTITY_CREDIT', 'credit'); - define('ENTITY_QUOTE', 'quote'); - define('ENTITY_TASK', 'task'); - define('ENTITY_ACCOUNT_GATEWAY', 'account_gateway'); - define('ENTITY_USER', 'user'); - define('ENTITY_TOKEN', 'token'); - define('ENTITY_TAX_RATE', 'tax_rate'); - define('ENTITY_PRODUCT', 'product'); - define('ENTITY_ACTIVITY', 'activity'); - define('ENTITY_VENDOR', 'vendor'); - define('ENTITY_VENDOR_ACTIVITY', 'vendor_activity'); - define('ENTITY_EXPENSE', 'expense'); - define('ENTITY_PAYMENT_TERM', 'payment_term'); - define('ENTITY_EXPENSE_ACTIVITY', 'expense_activity'); - define('ENTITY_BANK_ACCOUNT', 'bank_account'); - define('ENTITY_BANK_SUBACCOUNT', 'bank_subaccount'); - define('ENTITY_EXPENSE_CATEGORY', 'expense_category'); - define('ENTITY_PROJECT', 'project'); - - define('INVOICE_TYPE_STANDARD', 1); - define('INVOICE_TYPE_QUOTE', 2); - - define('PERSON_CONTACT', 'contact'); - define('PERSON_USER', 'user'); - define('PERSON_VENDOR_CONTACT','vendorcontact'); - - define('BASIC_SETTINGS', 'basic_settings'); - define('ADVANCED_SETTINGS', 'advanced_settings'); - - define('ACCOUNT_COMPANY_DETAILS', 'company_details'); - define('ACCOUNT_USER_DETAILS', 'user_details'); - define('ACCOUNT_LOCALIZATION', 'localization'); - define('ACCOUNT_NOTIFICATIONS', 'notifications'); - define('ACCOUNT_IMPORT_EXPORT', 'import_export'); - define('ACCOUNT_MANAGEMENT', 'account_management'); - define('ACCOUNT_PAYMENTS', 'online_payments'); - define('ACCOUNT_BANKS', 'bank_accounts'); - define('ACCOUNT_IMPORT_EXPENSES', 'import_expenses'); - define('ACCOUNT_MAP', 'import_map'); - define('ACCOUNT_EXPORT', 'export'); - define('ACCOUNT_TAX_RATES', 'tax_rates'); - define('ACCOUNT_PRODUCTS', 'products'); - define('ACCOUNT_ADVANCED_SETTINGS', 'advanced_settings'); - define('ACCOUNT_INVOICE_SETTINGS', 'invoice_settings'); - define('ACCOUNT_INVOICE_DESIGN', 'invoice_design'); - define('ACCOUNT_CLIENT_PORTAL', 'client_portal'); - define('ACCOUNT_EMAIL_SETTINGS', 'email_settings'); - define('ACCOUNT_REPORTS', 'reports'); - define('ACCOUNT_USER_MANAGEMENT', 'user_management'); - define('ACCOUNT_DATA_VISUALIZATIONS', 'data_visualizations'); - define('ACCOUNT_TEMPLATES_AND_REMINDERS', 'templates_and_reminders'); - define('ACCOUNT_API_TOKENS', 'api_tokens'); - define('ACCOUNT_CUSTOMIZE_DESIGN', 'customize_design'); - define('ACCOUNT_SYSTEM_SETTINGS', 'system_settings'); - define('ACCOUNT_PAYMENT_TERMS','payment_terms'); - - define('ACTION_RESTORE', 'restore'); - define('ACTION_ARCHIVE', 'archive'); - define('ACTION_CLONE', 'clone'); - define('ACTION_CONVERT', 'convert'); - define('ACTION_DELETE', 'delete'); - - define('ACTIVITY_TYPE_CREATE_CLIENT', 1); - define('ACTIVITY_TYPE_ARCHIVE_CLIENT', 2); - define('ACTIVITY_TYPE_DELETE_CLIENT', 3); - define('ACTIVITY_TYPE_CREATE_INVOICE', 4); - define('ACTIVITY_TYPE_UPDATE_INVOICE', 5); - define('ACTIVITY_TYPE_EMAIL_INVOICE', 6); - define('ACTIVITY_TYPE_VIEW_INVOICE', 7); - define('ACTIVITY_TYPE_ARCHIVE_INVOICE', 8); - define('ACTIVITY_TYPE_DELETE_INVOICE', 9); - define('ACTIVITY_TYPE_CREATE_PAYMENT', 10); - //define('ACTIVITY_TYPE_UPDATE_PAYMENT', 11); - define('ACTIVITY_TYPE_ARCHIVE_PAYMENT', 12); - define('ACTIVITY_TYPE_DELETE_PAYMENT', 13); - define('ACTIVITY_TYPE_CREATE_CREDIT', 14); - //define('ACTIVITY_TYPE_UPDATE_CREDIT', 15); - define('ACTIVITY_TYPE_ARCHIVE_CREDIT', 16); - define('ACTIVITY_TYPE_DELETE_CREDIT', 17); - define('ACTIVITY_TYPE_CREATE_QUOTE', 18); - define('ACTIVITY_TYPE_UPDATE_QUOTE', 19); - define('ACTIVITY_TYPE_EMAIL_QUOTE', 20); - define('ACTIVITY_TYPE_VIEW_QUOTE', 21); - define('ACTIVITY_TYPE_ARCHIVE_QUOTE', 22); - define('ACTIVITY_TYPE_DELETE_QUOTE', 23); - define('ACTIVITY_TYPE_RESTORE_QUOTE', 24); - define('ACTIVITY_TYPE_RESTORE_INVOICE', 25); - define('ACTIVITY_TYPE_RESTORE_CLIENT', 26); - define('ACTIVITY_TYPE_RESTORE_PAYMENT', 27); - define('ACTIVITY_TYPE_RESTORE_CREDIT', 28); - define('ACTIVITY_TYPE_APPROVE_QUOTE', 29); - define('ACTIVITY_TYPE_CREATE_VENDOR', 30); - define('ACTIVITY_TYPE_ARCHIVE_VENDOR', 31); - define('ACTIVITY_TYPE_DELETE_VENDOR', 32); - define('ACTIVITY_TYPE_RESTORE_VENDOR', 33); - define('ACTIVITY_TYPE_CREATE_EXPENSE', 34); - define('ACTIVITY_TYPE_ARCHIVE_EXPENSE', 35); - define('ACTIVITY_TYPE_DELETE_EXPENSE', 36); - define('ACTIVITY_TYPE_RESTORE_EXPENSE', 37); - define('ACTIVITY_TYPE_VOIDED_PAYMENT', 39); - define('ACTIVITY_TYPE_REFUNDED_PAYMENT', 40); - define('ACTIVITY_TYPE_FAILED_PAYMENT', 41); - define('ACTIVITY_TYPE_CREATE_TASK', 42); - define('ACTIVITY_TYPE_UPDATE_TASK', 43); - define('ACTIVITY_TYPE_ARCHIVE_TASK', 44); - define('ACTIVITY_TYPE_DELETE_TASK', 45); - define('ACTIVITY_TYPE_RESTORE_TASK', 46); - define('ACTIVITY_TYPE_UPDATE_EXPENSE', 47); - - - define('DEFAULT_INVOICE_NUMBER', '0001'); - define('RECENTLY_VIEWED_LIMIT', 20); - define('LOGGED_ERROR_LIMIT', 100); - define('RANDOM_KEY_LENGTH', 32); - define('MAX_NUM_USERS', 20); - define('MAX_IMPORT_ROWS', 1000); - define('MAX_SUBDOMAIN_LENGTH', 30); - define('MAX_IFRAME_URL_LENGTH', 250); - define('MAX_LOGO_FILE_SIZE', 200); // KB - define('MAX_FAILED_LOGINS', 10); - define('MAX_INVOICE_ITEMS', env('MAX_INVOICE_ITEMS', 100)); - define('MAX_DOCUMENT_SIZE', env('MAX_DOCUMENT_SIZE', 10000));// KB - define('MAX_EMAIL_DOCUMENTS_SIZE', env('MAX_EMAIL_DOCUMENTS_SIZE', 10000));// Total KB - define('MAX_ZIP_DOCUMENTS_SIZE', env('MAX_EMAIL_DOCUMENTS_SIZE', 30000));// Total KB (uncompressed) - define('DOCUMENT_PREVIEW_SIZE', env('DOCUMENT_PREVIEW_SIZE', 300));// pixels - define('DEFAULT_FONT_SIZE', 9); - define('DEFAULT_HEADER_FONT', 1);// Roboto - define('DEFAULT_BODY_FONT', 1);// Roboto - define('DEFAULT_SEND_RECURRING_HOUR', 8); - - define('IMPORT_CSV', 'CSV'); - define('IMPORT_JSON', 'JSON'); - define('IMPORT_FRESHBOOKS', 'FreshBooks'); - define('IMPORT_WAVE', 'Wave'); - define('IMPORT_RONIN', 'Ronin'); - define('IMPORT_HIVEAGE', 'Hiveage'); - define('IMPORT_ZOHO', 'Zoho'); - define('IMPORT_NUTCACHE', 'Nutcache'); - define('IMPORT_INVOICEABLE', 'Invoiceable'); - define('IMPORT_HARVEST', 'Harvest'); - - define('MAX_NUM_CLIENTS', 100); - define('MAX_NUM_CLIENTS_PRO', 20000); - define('MAX_NUM_CLIENTS_LEGACY', 500); - define('MAX_INVOICE_AMOUNT', 1000000000); - define('LEGACY_CUTOFF', 57800); - define('ERROR_DELAY', 3); - - define('MAX_NUM_VENDORS', 100); - define('MAX_NUM_VENDORS_PRO', 20000); - - define('STATUS_ACTIVE', 'active'); - define('STATUS_ARCHIVED', 'archived'); - define('STATUS_DELETED', 'deleted'); - - define('INVOICE_STATUS_DRAFT', 1); - define('INVOICE_STATUS_SENT', 2); - define('INVOICE_STATUS_VIEWED', 3); - define('INVOICE_STATUS_APPROVED', 4); - define('INVOICE_STATUS_PARTIAL', 5); - define('INVOICE_STATUS_PAID', 6); - define('INVOICE_STATUS_OVERDUE', 7); - - define('PAYMENT_STATUS_PENDING', 1); - define('PAYMENT_STATUS_VOIDED', 2); - define('PAYMENT_STATUS_FAILED', 3); - define('PAYMENT_STATUS_COMPLETED', 4); - define('PAYMENT_STATUS_PARTIALLY_REFUNDED', 5); - define('PAYMENT_STATUS_REFUNDED', 6); - - define('TASK_STATUS_LOGGED', 1); - define('TASK_STATUS_RUNNING', 2); - define('TASK_STATUS_INVOICED', 3); - define('TASK_STATUS_PAID', 4); - - define('EXPENSE_STATUS_LOGGED', 1); - define('EXPENSE_STATUS_INVOICED', 2); - define('EXPENSE_STATUS_PAID', 3); - - define('CUSTOM_DESIGN', 11); - - define('FREQUENCY_WEEKLY', 1); - define('FREQUENCY_TWO_WEEKS', 2); - define('FREQUENCY_FOUR_WEEKS', 3); - define('FREQUENCY_MONTHLY', 4); - define('FREQUENCY_THREE_MONTHS', 5); - define('FREQUENCY_SIX_MONTHS', 6); - define('FREQUENCY_ANNUALLY', 7); - - define('SESSION_TIMEZONE', 'timezone'); - define('SESSION_CURRENCY', 'currency'); - define('SESSION_CURRENCY_DECORATOR', 'currency_decorator'); - define('SESSION_DATE_FORMAT', 'dateFormat'); - define('SESSION_DATE_PICKER_FORMAT', 'datePickerFormat'); - define('SESSION_DATETIME_FORMAT', 'datetimeFormat'); - define('SESSION_COUNTER', 'sessionCounter'); - define('SESSION_LOCALE', 'sessionLocale'); - define('SESSION_USER_ACCOUNTS', 'userAccounts'); - define('SESSION_REFERRAL_CODE', 'referralCode'); - define('SESSION_LEFT_SIDEBAR', 'showLeftSidebar'); - define('SESSION_RIGHT_SIDEBAR', 'showRightSidebar'); - - define('SESSION_LAST_REQUEST_PAGE', 'SESSION_LAST_REQUEST_PAGE'); - define('SESSION_LAST_REQUEST_TIME', 'SESSION_LAST_REQUEST_TIME'); - - define('CURRENCY_DOLLAR', 1); - define('CURRENCY_EURO', 3); - - define('DEFAULT_TIMEZONE', 'US/Eastern'); - define('DEFAULT_COUNTRY', 840); // United Stated - define('DEFAULT_CURRENCY', CURRENCY_DOLLAR); - define('DEFAULT_LANGUAGE', 1); // English - define('DEFAULT_DATE_FORMAT', 'M j, Y'); - define('DEFAULT_DATE_PICKER_FORMAT', 'M d, yyyy'); - define('DEFAULT_DATETIME_FORMAT', 'F j, Y g:i a'); - define('DEFAULT_DATETIME_MOMENT_FORMAT', 'MMM D, YYYY h:mm:ss a'); - define('DEFAULT_LOCALE', 'en'); - define('DEFAULT_MAP_ZOOM', 10); - - define('RESULT_SUCCESS', 'success'); - define('RESULT_FAILURE', 'failure'); - - - define('PAYMENT_LIBRARY_OMNIPAY', 1); - define('PAYMENT_LIBRARY_PHP_PAYMENTS', 2); - - define('GATEWAY_AUTHORIZE_NET', 1); - define('GATEWAY_EWAY', 4); - define('GATEWAY_MOLLIE', 9); - define('GATEWAY_PAYFAST', 13); - define('GATEWAY_PAYPAL_EXPRESS', 17); - define('GATEWAY_PAYPAL_PRO', 18); - define('GATEWAY_SAGE_PAY_DIRECT', 20); - define('GATEWAY_SAGE_PAY_SERVER', 21); - define('GATEWAY_STRIPE', 23); - define('GATEWAY_GOCARDLESS', 6); - define('GATEWAY_TWO_CHECKOUT', 27); - define('GATEWAY_BEANSTREAM', 29); - define('GATEWAY_PSIGATE', 30); - define('GATEWAY_MOOLAH', 31); - define('GATEWAY_BITPAY', 42); - define('GATEWAY_DWOLLA', 43); - define('GATEWAY_CHECKOUT_COM', 47); - define('GATEWAY_CYBERSOURCE', 49); - define('GATEWAY_WEPAY', 60); - define('GATEWAY_BRAINTREE', 61); - define('GATEWAY_CUSTOM', 62); - - // The customer exists, but only as a local concept - // The remote gateway doesn't understand the concept of customers - define('CUSTOMER_REFERENCE_LOCAL', 'local'); - - define('EVENT_CREATE_CLIENT', 1); - define('EVENT_CREATE_INVOICE', 2); - define('EVENT_CREATE_QUOTE', 3); - define('EVENT_CREATE_PAYMENT', 4); - define('EVENT_CREATE_VENDOR', 5); - define('EVENT_UPDATE_QUOTE', 6); - define('EVENT_DELETE_QUOTE', 7); - define('EVENT_UPDATE_INVOICE', 8); - define('EVENT_DELETE_INVOICE', 9); - - define('REQUESTED_PRO_PLAN', 'REQUESTED_PRO_PLAN'); - define('DEMO_ACCOUNT_ID', 'DEMO_ACCOUNT_ID'); - define('PREV_USER_ID', 'PREV_USER_ID'); - define('NINJA_ACCOUNT_KEY', 'zg4ylmzDkdkPOT8yoKQw9LTWaoZJx79h'); - define('NINJA_GATEWAY_ID', GATEWAY_STRIPE); - define('NINJA_GATEWAY_CONFIG', 'NINJA_GATEWAY_CONFIG'); - define('NINJA_WEB_URL', env('NINJA_WEB_URL', 'https://www.invoiceninja.com')); - define('NINJA_APP_URL', env('NINJA_APP_URL', 'https://app.invoiceninja.com')); - define('NINJA_DOCS_URL', env('NINJA_DOCS_URL', 'http://docs.invoiceninja.com/en/latest')); - define('NINJA_DATE', '2000-01-01'); - define('NINJA_VERSION', '2.9.3' . env('NINJA_VERSION_SUFFIX')); - - define('SOCIAL_LINK_FACEBOOK', env('SOCIAL_LINK_FACEBOOK', 'https://www.facebook.com/invoiceninja')); - define('SOCIAL_LINK_TWITTER', env('SOCIAL_LINK_TWITTER', 'https://twitter.com/invoiceninja')); - define('SOCIAL_LINK_GITHUB', env('SOCIAL_LINK_GITHUB', 'https://github.com/invoiceninja/invoiceninja/')); - - define('NINJA_FORUM_URL', env('NINJA_FORUM_URL', 'https://www.invoiceninja.com/forums/forum/support/')); - define('NINJA_CONTACT_URL', env('NINJA_CONTACT_URL', 'https://www.invoiceninja.com/contact/')); - define('NINJA_FROM_EMAIL', env('NINJA_FROM_EMAIL', 'maildelivery@invoiceninja.com')); - define('NINJA_IOS_APP_URL', 'https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1072566815'); - define('RELEASES_URL', env('RELEASES_URL', 'https://trello.com/b/63BbiVVe/invoice-ninja')); - define('ZAPIER_URL', env('ZAPIER_URL', 'https://zapier.com/zapbook/invoice-ninja')); - define('OUTDATE_BROWSER_URL', env('OUTDATE_BROWSER_URL', 'http://browsehappy.com/')); - define('PDFMAKE_DOCS', env('PDFMAKE_DOCS', 'http://pdfmake.org/playground.html')); - define('PHANTOMJS_CLOUD', env('PHANTOMJS_CLOUD', 'http://api.phantomjscloud.com/api/browser/v2/')); - define('PHP_DATE_FORMATS', env('PHP_DATE_FORMATS', 'http://php.net/manual/en/function.date.php')); - define('REFERRAL_PROGRAM_URL', env('REFERRAL_PROGRAM_URL', 'https://www.invoiceninja.com/referral-program/')); - define('EMAIL_MARKUP_URL', env('EMAIL_MARKUP_URL', 'https://developers.google.com/gmail/markup')); - define('OFX_HOME_URL', env('OFX_HOME_URL', 'http://www.ofxhome.com/index.php/home/directory/all')); - define('GOOGLE_ANALYITCS_URL', env('GOOGLE_ANALYITCS_URL', 'https://www.google-analytics.com/collect')); - define('TRANSIFEX_URL', env('TRANSIFEX_URL', 'https://www.transifex.com/invoice-ninja/invoice-ninja')); - define('CHROME_PDF_HELP_URL', 'https://support.google.com/chrome/answer/6213030?hl=en'); - define('FIREFOX_PDF_HELP_URL', 'https://support.mozilla.org/en-US/kb/view-pdf-files-firefox'); - - define('MSBOT_LOGIN_URL', 'https://login.microsoftonline.com/common/oauth2/v2.0/token'); - define('MSBOT_LUIS_URL', 'https://api.projectoxford.ai/luis/v1/application'); - define('SKYPE_API_URL', 'https://apis.skype.com/v3'); - define('MSBOT_STATE_URL', 'https://state.botframework.com/v3'); - - define('BLANK_IMAGE', 'data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='); - - define('COUNT_FREE_DESIGNS', 4); - define('COUNT_FREE_DESIGNS_SELF_HOST', 5); // include the custom design - define('PRODUCT_ONE_CLICK_INSTALL', 1); - define('PRODUCT_INVOICE_DESIGNS', 2); - define('PRODUCT_WHITE_LABEL', 3); - define('PRODUCT_SELF_HOST', 4); - define('WHITE_LABEL_AFFILIATE_KEY', '92D2J5'); - define('INVOICE_DESIGNS_AFFILIATE_KEY', 'T3RS74'); - define('SELF_HOST_AFFILIATE_KEY', '8S69AD'); - - define('PLAN_PRICE_PRO_MONTHLY', env('PLAN_PRICE_PRO_MONTHLY', 8)); - define('PLAN_PRICE_ENTERPRISE_MONTHLY_2', env('PLAN_PRICE_ENTERPRISE_MONTHLY_2', 12)); - define('PLAN_PRICE_ENTERPRISE_MONTHLY_5', env('PLAN_PRICE_ENTERPRISE_MONTHLY_5', 18)); - define('PLAN_PRICE_ENTERPRISE_MONTHLY_10', env('PLAN_PRICE_ENTERPRISE_MONTHLY_10', 24)); - define('PLAN_PRICE_ENTERPRISE_MONTHLY_20', env('PLAN_PRICE_ENTERPRISE_MONTHLY_20', 36)); - define('WHITE_LABEL_PRICE', env('WHITE_LABEL_PRICE', 20)); - define('INVOICE_DESIGNS_PRICE', env('INVOICE_DESIGNS_PRICE', 10)); - - define('USER_TYPE_SELF_HOST', 'SELF_HOST'); - define('USER_TYPE_CLOUD_HOST', 'CLOUD_HOST'); - define('NEW_VERSION_AVAILABLE', 'NEW_VERSION_AVAILABLE'); - - define('TEST_USERNAME', 'user@example.com'); - define('TEST_PASSWORD', 'password'); - define('API_SECRET', 'API_SECRET'); - define('DEFAULT_API_PAGE_SIZE', 15); - define('MAX_API_PAGE_SIZE', 500); - - define('IOS_PUSH_CERTIFICATE', env('IOS_PUSH_CERTIFICATE', '')); - - define('TOKEN_BILLING_DISABLED', 1); - define('TOKEN_BILLING_OPT_IN', 2); - define('TOKEN_BILLING_OPT_OUT', 3); - define('TOKEN_BILLING_ALWAYS', 4); - - define('PAYMENT_TYPE_CREDIT', 1); - define('PAYMENT_TYPE_ACH', 5); - define('PAYMENT_TYPE_VISA', 6); - define('PAYMENT_TYPE_MASTERCARD', 7); - define('PAYMENT_TYPE_AMERICAN_EXPRESS', 8); - define('PAYMENT_TYPE_DISCOVER', 9); - define('PAYMENT_TYPE_DINERS', 10); - define('PAYMENT_TYPE_EUROCARD', 11); - define('PAYMENT_TYPE_NOVA', 12); - define('PAYMENT_TYPE_CREDIT_CARD_OTHER', 13); - define('PAYMENT_TYPE_PAYPAL', 14); - define('PAYMENT_TYPE_CARTE_BLANCHE', 17); - define('PAYMENT_TYPE_UNIONPAY', 18); - define('PAYMENT_TYPE_JCB', 19); - define('PAYMENT_TYPE_LASER', 20); - define('PAYMENT_TYPE_MAESTRO', 21); - define('PAYMENT_TYPE_SOLO', 22); - define('PAYMENT_TYPE_SWITCH', 23); - - define('PAYMENT_METHOD_STATUS_NEW', 'new'); - define('PAYMENT_METHOD_STATUS_VERIFICATION_FAILED', 'verification_failed'); - define('PAYMENT_METHOD_STATUS_VERIFIED', 'verified'); - - define('GATEWAY_TYPE_CREDIT_CARD', 1); - define('GATEWAY_TYPE_BANK_TRANSFER', 2); - define('GATEWAY_TYPE_PAYPAL', 3); - define('GATEWAY_TYPE_BITCOIN', 4); - define('GATEWAY_TYPE_DWOLLA', 5); - define('GATEWAY_TYPE_CUSTOM', 6); - define('GATEWAY_TYPE_TOKEN', 'token'); - - define('REMINDER1', 'reminder1'); - define('REMINDER2', 'reminder2'); - define('REMINDER3', 'reminder3'); - - define('REMINDER_DIRECTION_AFTER', 1); - define('REMINDER_DIRECTION_BEFORE', 2); - - define('REMINDER_FIELD_DUE_DATE', 1); - define('REMINDER_FIELD_INVOICE_DATE', 2); - - define('FILTER_INVOICE_DATE', 'invoice_date'); - define('FILTER_PAYMENT_DATE', 'payment_date'); - - define('SOCIAL_GOOGLE', 'Google'); - define('SOCIAL_FACEBOOK', 'Facebook'); - define('SOCIAL_GITHUB', 'GitHub'); - define('SOCIAL_LINKEDIN', 'LinkedIn'); - - define('USER_STATE_ACTIVE', 'active'); - define('USER_STATE_PENDING', 'pending'); - define('USER_STATE_DISABLED', 'disabled'); - define('USER_STATE_ADMIN', 'admin'); - define('USER_STATE_OWNER', 'owner'); - - define('API_SERIALIZER_ARRAY', 'array'); - define('API_SERIALIZER_JSON', 'json'); - - define('EMAIL_DESIGN_PLAIN', 1); - define('EMAIL_DESIGN_LIGHT', 2); - define('EMAIL_DESIGN_DARK', 3); - - define('BANK_LIBRARY_OFX', 1); - - define('CURRENCY_DECORATOR_CODE', 'code'); - define('CURRENCY_DECORATOR_SYMBOL', 'symbol'); - define('CURRENCY_DECORATOR_NONE', 'none'); - - define('RESELLER_REVENUE_SHARE', 'A'); - define('RESELLER_LIMITED_USERS', 'B'); - - define('AUTO_BILL_OFF', 1); - define('AUTO_BILL_OPT_IN', 2); - define('AUTO_BILL_OPT_OUT', 3); - define('AUTO_BILL_ALWAYS', 4); - - // These must be lowercase - define('PLAN_FREE', 'free'); - define('PLAN_PRO', 'pro'); - define('PLAN_ENTERPRISE', 'enterprise'); - define('PLAN_WHITE_LABEL', 'white_label'); - define('PLAN_TERM_MONTHLY', 'month'); - define('PLAN_TERM_YEARLY', 'year'); - - // Pro - define('FEATURE_CUSTOMIZE_INVOICE_DESIGN', 'customize_invoice_design'); - define('FEATURE_REMOVE_CREATED_BY', 'remove_created_by'); - define('FEATURE_DIFFERENT_DESIGNS', 'different_designs'); - define('FEATURE_EMAIL_TEMPLATES_REMINDERS', 'email_templates_reminders'); - define('FEATURE_INVOICE_SETTINGS', 'invoice_settings'); - define('FEATURE_CUSTOM_EMAILS', 'custom_emails'); - define('FEATURE_PDF_ATTACHMENT', 'pdf_attachment'); - define('FEATURE_MORE_INVOICE_DESIGNS', 'more_invoice_designs'); - define('FEATURE_QUOTES', 'quotes'); - define('FEATURE_TASKS', 'tasks'); - define('FEATURE_EXPENSES', 'expenses'); - define('FEATURE_REPORTS', 'reports'); - define('FEATURE_BUY_NOW_BUTTONS', 'buy_now_buttons'); - define('FEATURE_API', 'api'); - define('FEATURE_CLIENT_PORTAL_PASSWORD', 'client_portal_password'); - define('FEATURE_CUSTOM_URL', 'custom_url'); - - define('FEATURE_MORE_CLIENTS', 'more_clients'); // No trial allowed - - // Whitelabel - define('FEATURE_CLIENT_PORTAL_CSS', 'client_portal_css'); - define('FEATURE_WHITE_LABEL', 'feature_white_label'); - - // Enterprise - define('FEATURE_DOCUMENTS', 'documents'); - - // No Trial allowed - define('FEATURE_USERS', 'users');// Grandfathered for old Pro users - define('FEATURE_USER_PERMISSIONS', 'user_permissions'); - - // Pro users who started paying on or before this date will be able to manage users - define('PRO_USERS_GRANDFATHER_DEADLINE', '2016-06-04'); - define('EXTRAS_GRANDFATHER_COMPANY_ID', 35089); - - // WePay - define('WEPAY_PRODUCTION', 'production'); - define('WEPAY_STAGE', 'stage'); - define('WEPAY_CLIENT_ID', env('WEPAY_CLIENT_ID')); - define('WEPAY_CLIENT_SECRET', env('WEPAY_CLIENT_SECRET')); - define('WEPAY_AUTO_UPDATE', env('WEPAY_AUTO_UPDATE', false)); - define('WEPAY_ENVIRONMENT', env('WEPAY_ENVIRONMENT', WEPAY_PRODUCTION)); - define('WEPAY_ENABLE_CANADA', env('WEPAY_ENABLE_CANADA', false)); - define('WEPAY_THEME', env('WEPAY_THEME','{"name":"Invoice Ninja","primary_color":"0b4d78","secondary_color":"0b4d78","background_color":"f8f8f8","button_color":"33b753"}')); - - define('SKYPE_CARD_RECEIPT', 'message/card.receipt'); - define('SKYPE_CARD_CAROUSEL', 'message/card.carousel'); - define('SKYPE_CARD_HERO', ''); - - define('BOT_STATE_GET_EMAIL', 'get_email'); - define('BOT_STATE_GET_CODE', 'get_code'); - define('BOT_STATE_READY', 'ready'); - define('SIMILAR_MIN_THRESHOLD', 50); - - // https://docs.botframework.com/en-us/csharp/builder/sdkreference/attachments.html - define('SKYPE_BUTTON_OPEN_URL', 'openUrl'); - define('SKYPE_BUTTON_IM_BACK', 'imBack'); - define('SKYPE_BUTTON_POST_BACK', 'postBack'); - define('SKYPE_BUTTON_CALL', 'call'); // "tel:123123123123" - define('SKYPE_BUTTON_PLAY_AUDIO', 'playAudio'); - define('SKYPE_BUTTON_PLAY_VIDEO', 'playVideo'); - define('SKYPE_BUTTON_SHOW_IMAGE', 'showImage'); - define('SKYPE_BUTTON_DOWNLOAD_FILE', 'downloadFile'); - - define('INVOICE_FIELDS_CLIENT', 'client_fields'); - define('INVOICE_FIELDS_INVOICE', 'invoice_fields'); - define('INVOICE_FIELDS_ACCOUNT', 'account_fields'); - - $creditCards = [ - 1 => ['card' => 'images/credit_cards/Test-Visa-Icon.png', 'text' => 'Visa'], - 2 => ['card' => 'images/credit_cards/Test-MasterCard-Icon.png', 'text' => 'Master Card'], - 4 => ['card' => 'images/credit_cards/Test-AmericanExpress-Icon.png', 'text' => 'American Express'], - 8 => ['card' => 'images/credit_cards/Test-Diners-Icon.png', 'text' => 'Diners'], - 16 => ['card' => 'images/credit_cards/Test-Discover-Icon.png', 'text' => 'Discover'] - ]; - define('CREDIT_CARDS', serialize($creditCards)); - - $cachedTables = [ - 'currencies' => 'App\Models\Currency', - 'sizes' => 'App\Models\Size', - 'industries' => 'App\Models\Industry', - 'timezones' => 'App\Models\Timezone', - 'dateFormats' => 'App\Models\DateFormat', - 'datetimeFormats' => 'App\Models\DatetimeFormat', - 'languages' => 'App\Models\Language', - 'paymentTerms' => 'App\Models\PaymentTerm', - 'paymentTypes' => 'App\Models\PaymentType', - 'countries' => 'App\Models\Country', - 'invoiceDesigns' => 'App\Models\InvoiceDesign', - 'invoiceStatus' => 'App\Models\InvoiceStatus', - 'frequencies' => 'App\Models\Frequency', - 'gateways' => 'App\Models\Gateway', - 'gatewayTypes' => 'App\Models\GatewayType', - 'fonts' => 'App\Models\Font', - 'banks' => 'App\Models\Bank', - ]; - define('CACHED_TABLES', serialize($cachedTables)); - - function uctrans($text) - { - return ucwords(trans($text)); - } - - // optional trans: only return the string if it's translated - function otrans($text) - { - $locale = Session::get(SESSION_LOCALE); - - if ($locale == 'en') { - return trans($text); - } else { - $string = trans($text); - $english = trans($text, [], 'en'); - return $string != $english ? $string : ''; - } - } - - // include modules in translations - function mtrans($entityType, $text = false) - { - if ( ! $text) { - $text = $entityType; - } - - // check if this has been translated in a module language file - if ( ! Utils::isNinjaProd() && $module = Module::find($entityType)) { - $key = "{$module->getLowerName()}::texts.{$text}"; - $value = trans($key); - if ($key != $value) { - return $value; - } - } - - return trans("texts.{$text}"); - } -} - /* if (Utils::isNinjaDev()) diff --git a/app/Libraries/Constants.php b/app/Libraries/Constants.php new file mode 100644 index 000000000000..be8660e82355 --- /dev/null +++ b/app/Libraries/Constants.php @@ -0,0 +1,580 @@ + ['card' => 'images/credit_cards/Test-Visa-Icon.png', 'text' => 'Visa'], + 2 => ['card' => 'images/credit_cards/Test-MasterCard-Icon.png', 'text' => 'Master Card'], + 4 => ['card' => 'images/credit_cards/Test-AmericanExpress-Icon.png', 'text' => 'American Express'], + 8 => ['card' => 'images/credit_cards/Test-Diners-Icon.png', 'text' => 'Diners'], + 16 => ['card' => 'images/credit_cards/Test-Discover-Icon.png', 'text' => 'Discover'] + ]; + define('CREDIT_CARDS', serialize($creditCards)); + + $cachedTables = [ + 'currencies' => 'App\Models\Currency', + 'sizes' => 'App\Models\Size', + 'industries' => 'App\Models\Industry', + 'timezones' => 'App\Models\Timezone', + 'dateFormats' => 'App\Models\DateFormat', + 'datetimeFormats' => 'App\Models\DatetimeFormat', + 'languages' => 'App\Models\Language', + 'paymentTerms' => 'App\Models\PaymentTerm', + 'paymentTypes' => 'App\Models\PaymentType', + 'countries' => 'App\Models\Country', + 'invoiceDesigns' => 'App\Models\InvoiceDesign', + 'invoiceStatus' => 'App\Models\InvoiceStatus', + 'frequencies' => 'App\Models\Frequency', + 'gateways' => 'App\Models\Gateway', + 'gatewayTypes' => 'App\Models\GatewayType', + 'fonts' => 'App\Models\Font', + 'banks' => 'App\Models\Bank', + ]; + define('CACHED_TABLES', serialize($cachedTables)); + + function uctrans($text) + { + return ucwords(trans($text)); + } + + // optional trans: only return the string if it's translated + function otrans($text) + { + $locale = Session::get(SESSION_LOCALE); + + if ($locale == 'en') { + return trans($text); + } else { + $string = trans($text); + $english = trans($text, [], 'en'); + return $string != $english ? $string : ''; + } + } + + // include modules in translations + function mtrans($entityType, $text = false) + { + if ( ! $text) { + $text = $entityType; + } + + // check if this has been translated in a module language file + if ( ! Utils::isNinjaProd() && $module = Module::find($entityType)) { + $key = "{$module->getLowerName()}::texts.{$text}"; + $value = trans($key); + if ($key != $value) { + return $value; + } + } + + return trans("texts.{$text}"); + } +} diff --git a/composer.json b/composer.json index ed13c19da2c5..01aa6e8bb2a2 100644 --- a/composer.json +++ b/composer.json @@ -109,7 +109,8 @@ }, "files": [ "app/Libraries/lib_autolink.php", - "app/Libraries/OFX.php" + "app/Libraries/OFX.php", + "app/Libraries/Constants.php" ] }, "autoload-dev": { diff --git a/composer.lock b/composer.lock index 6f639e3854a4..8c7c6b7d061b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "10dafe2e4414d132b3901b8950150c31", + "hash": "82b4ad1ee75d50a4c94a52bf93b051a2", "content-hash": "1e2d58c1e958d77ff76b29acccea8585", "packages": [ { @@ -271,20 +271,24 @@ }, { "name": "asgrim/ofxparser", - "version": "1.1.1", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/asgrim/ofxparser.git", - "reference": "7652efea77a1c5dda007f9764d8061f870248ea1" + "reference": "8ba143295be666ae2cac05674f7d526d8e0ebed7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/asgrim/ofxparser/zipball/7652efea77a1c5dda007f9764d8061f870248ea1", - "reference": "7652efea77a1c5dda007f9764d8061f870248ea1", + "url": "https://api.github.com/repos/asgrim/ofxparser/zipball/8ba143295be666ae2cac05674f7d526d8e0ebed7", + "reference": "8ba143295be666ae2cac05674f7d526d8e0ebed7", "shasum": "" }, "require": { - "php": ">=5.4" + "php": "~5.6|~7.0" + }, + "require-dev": { + "phpunit/phpunit": "~5.5", + "squizlabs/php_codesniffer": "~2.6" }, "type": "library", "autoload": { @@ -319,20 +323,20 @@ "open financial exchange", "parser" ], - "time": "2015-12-11 11:08:57" + "time": "2016-09-26 11:36:23" }, { "name": "aws/aws-sdk-php", - "version": "3.19.1", + "version": "3.20.13", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "40d7696b738c1376d5c1d1462e113c2a5648156b" + "reference": "343c6c96468de5087ae5e7df4ccee2668857a5aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/40d7696b738c1376d5c1d1462e113c2a5648156b", - "reference": "40d7696b738c1376d5c1d1462e113c2a5648156b", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/343c6c96468de5087ae5e7df4ccee2668857a5aa", + "reference": "343c6c96468de5087ae5e7df4ccee2668857a5aa", "shasum": "" }, "require": { @@ -399,20 +403,20 @@ "s3", "sdk" ], - "time": "2016-08-18 22:54:26" + "time": "2017-01-04 18:20:17" }, { "name": "barracudanetworks/archivestream-php", - "version": "1.0.3", + "version": "1.0.4", "source": { "type": "git", "url": "https://github.com/barracudanetworks/ArchiveStream-php.git", - "reference": "c4e10449abde2c3283d2bda378cfb458dec08ca1" + "reference": "556536e650f774c4ca9894a04c1282f49291a1c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barracudanetworks/ArchiveStream-php/zipball/c4e10449abde2c3283d2bda378cfb458dec08ca1", - "reference": "c4e10449abde2c3283d2bda378cfb458dec08ca1", + "url": "https://api.github.com/repos/barracudanetworks/ArchiveStream-php/zipball/556536e650f774c4ca9894a04c1282f49291a1c7", + "reference": "556536e650f774c4ca9894a04c1282f49291a1c7", "shasum": "" }, "require": { @@ -439,32 +443,32 @@ "tar", "zip" ], - "time": "2016-05-18 21:28:06" + "time": "2016-09-01 18:40:58" }, { "name": "barryvdh/laravel-debugbar", - "version": "v2.2.2", + "version": "v2.3.1", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "c291e58d0a13953e0f68d99182ee77ebc693edc0" + "reference": "65b0465e38a9524c9d5eb2dfc0389aba23090625" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/c291e58d0a13953e0f68d99182ee77ebc693edc0", - "reference": "c291e58d0a13953e0f68d99182ee77ebc693edc0", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/65b0465e38a9524c9d5eb2dfc0389aba23090625", + "reference": "65b0465e38a9524c9d5eb2dfc0389aba23090625", "shasum": "" }, "require": { - "illuminate/support": "5.1.*|5.2.*", - "maximebf/debugbar": "~1.11.0", + "illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*", + "maximebf/debugbar": "~1.13.0", "php": ">=5.5.9", "symfony/finder": "~2.7|~3.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-master": "2.3-dev" } }, "autoload": { @@ -493,20 +497,20 @@ "profiler", "webprofiler" ], - "time": "2016-05-11 13:54:43" + "time": "2017-01-05 08:53:44" }, { "name": "barryvdh/laravel-ide-helper", - "version": "v2.2.1", + "version": "v2.2.2", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-ide-helper.git", - "reference": "28af7cd19ca41cc0c63dd1de2b46c2b84d31c463" + "reference": "105f14a50d0959a0e80004a15b3350fdf78f9623" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/28af7cd19ca41cc0c63dd1de2b46c2b84d31c463", - "reference": "28af7cd19ca41cc0c63dd1de2b46c2b84d31c463", + "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/105f14a50d0959a0e80004a15b3350fdf78f9623", + "reference": "105f14a50d0959a0e80004a15b3350fdf78f9623", "shasum": "" }, "require": { @@ -559,7 +563,7 @@ "phpstorm", "sublime" ], - "time": "2016-07-04 11:52:48" + "time": "2016-11-15 08:21:23" }, { "name": "barryvdh/reflection-docblock", @@ -612,16 +616,16 @@ }, { "name": "braintree/braintree_php", - "version": "3.15.0", + "version": "3.20.0", "source": { "type": "git", "url": "https://github.com/braintree/braintree_php.git", - "reference": "1026b6cca5f2dd5dfdd5447843b920cc74d2b8ca" + "reference": "4327468f08b97c6d34b7b47fb7e8cea51d55e201" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/braintree/braintree_php/zipball/1026b6cca5f2dd5dfdd5447843b920cc74d2b8ca", - "reference": "1026b6cca5f2dd5dfdd5447843b920cc74d2b8ca", + "url": "https://api.github.com/repos/braintree/braintree_php/zipball/4327468f08b97c6d34b7b47fb7e8cea51d55e201", + "reference": "4327468f08b97c6d34b7b47fb7e8cea51d55e201", "shasum": "" }, "require": { @@ -655,7 +659,7 @@ } ], "description": "Braintree PHP Client Library", - "time": "2016-07-18 21:55:50" + "time": "2016-12-28 21:25:17" }, { "name": "cardgate/omnipay-cardgate", @@ -802,20 +806,20 @@ }, { "name": "classpreloader/classpreloader", - "version": "3.0.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/ClassPreloader/ClassPreloader.git", - "reference": "9b10b913c2bdf90c3d2e0d726b454fb7f77c552a" + "reference": "bc7206aa892b5a33f4680421b69b191efd32b096" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ClassPreloader/ClassPreloader/zipball/9b10b913c2bdf90c3d2e0d726b454fb7f77c552a", - "reference": "9b10b913c2bdf90c3d2e0d726b454fb7f77c552a", + "url": "https://api.github.com/repos/ClassPreloader/ClassPreloader/zipball/bc7206aa892b5a33f4680421b69b191efd32b096", + "reference": "bc7206aa892b5a33f4680421b69b191efd32b096", "shasum": "" }, "require": { - "nikic/php-parser": "^1.0|^2.0", + "nikic/php-parser": "^1.0|^2.0|^3.0", "php": ">=5.5.9" }, "require-dev": { @@ -824,7 +828,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -852,7 +856,7 @@ "class", "preload" ], - "time": "2015-11-09 22:51:51" + "time": "2016-09-16 12:50:15" }, { "name": "coatesap/omnipay-datacash", @@ -1160,12 +1164,12 @@ "source": { "type": "git", "url": "https://github.com/delatbabel/omnipay-fatzebra.git", - "reference": "d0a56a8704357d91457672741a48a4cb6c7ecd53" + "reference": "0a5708da00bf39806881a4f2d286ec95fe3fb80c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/delatbabel/omnipay-fatzebra/zipball/d0a56a8704357d91457672741a48a4cb6c7ecd53", - "reference": "d0a56a8704357d91457672741a48a4cb6c7ecd53", + "url": "https://api.github.com/repos/delatbabel/omnipay-fatzebra/zipball/0a5708da00bf39806881a4f2d286ec95fe3fb80c", + "reference": "0a5708da00bf39806881a4f2d286ec95fe3fb80c", "shasum": "" }, "require": { @@ -1209,27 +1213,28 @@ "payment", "paystream" ], - "time": "2016-03-21 09:21:14" + "time": "2016-08-27 04:11:44" }, { "name": "dercoder/omnipay-ecopayz", - "version": "v1.0.1", + "version": "v1.0.2", "source": { "type": "git", "url": "https://github.com/dercoder/omnipay-ecopayz.git", - "reference": "583cfee3db1e1e04c74f2d3a56559d0f2af761d4" + "reference": "825e937e1b057e25cba4067e048bf5bc0a60a836" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dercoder/omnipay-ecopayz/zipball/583cfee3db1e1e04c74f2d3a56559d0f2af761d4", - "reference": "583cfee3db1e1e04c74f2d3a56559d0f2af761d4", + "url": "https://api.github.com/repos/dercoder/omnipay-ecopayz/zipball/825e937e1b057e25cba4067e048bf5bc0a60a836", + "reference": "825e937e1b057e25cba4067e048bf5bc0a60a836", "shasum": "" }, "require": { "omnipay/common": "~2.3" }, "require-dev": { - "omnipay/tests": "~2.0" + "omnipay/tests": "~2.0", + "satooshi/php-coveralls": "1.0.0" }, "type": "library", "extra": { @@ -1256,7 +1261,7 @@ "pay", "payment" ], - "time": "2015-04-07 13:50:36" + "time": "2016-09-15 16:18:21" }, { "name": "dercoder/omnipay-paysafecard", @@ -1447,35 +1452,35 @@ }, { "name": "doctrine/annotations", - "version": "v1.2.7", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535" + "reference": "bd4461328621bde0ae6b1b2675fbc6aca4ceb558" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535", - "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/bd4461328621bde0ae6b1b2675fbc6aca4ceb558", + "reference": "bd4461328621bde0ae6b1b2675fbc6aca4ceb558", "shasum": "" }, "require": { "doctrine/lexer": "1.*", - "php": ">=5.3.2" + "php": "^5.6 || ^7.0" }, "require-dev": { "doctrine/cache": "1.*", - "phpunit/phpunit": "4.*" + "phpunit/phpunit": "^5.6.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.4.x-dev" } }, "autoload": { - "psr-0": { - "Doctrine\\Common\\Annotations\\": "lib/" + "psr-4": { + "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" } }, "notification-url": "https://packagist.org/downloads/", @@ -1511,20 +1516,20 @@ "docblock", "parser" ], - "time": "2015-08-31 12:32:49" + "time": "2016-12-30 15:59:45" }, { "name": "doctrine/cache", - "version": "v1.6.0", + "version": "v1.6.1", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6" + "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/f8af318d14bdb0eff0336795b428b547bd39ccb6", - "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6", + "url": "https://api.github.com/repos/doctrine/cache/zipball/b6f544a20f4807e81f7044d31e679ccbb1866dc3", + "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3", "shasum": "" }, "require": { @@ -1581,7 +1586,7 @@ "cache", "caching" ], - "time": "2015-12-31 16:37:02" + "time": "2016-10-29 11:16:17" }, { "name": "doctrine/collections", @@ -1651,16 +1656,16 @@ }, { "name": "doctrine/common", - "version": "v2.6.1", + "version": "v2.6.2", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", - "reference": "a579557bc689580c19fee4e27487a67fe60defc0" + "reference": "7bce00698899aa2c06fe7365c76e4d78ddb15fa3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/a579557bc689580c19fee4e27487a67fe60defc0", - "reference": "a579557bc689580c19fee4e27487a67fe60defc0", + "url": "https://api.github.com/repos/doctrine/common/zipball/7bce00698899aa2c06fe7365c76e4d78ddb15fa3", + "reference": "7bce00698899aa2c06fe7365c76e4d78ddb15fa3", "shasum": "" }, "require": { @@ -1720,20 +1725,20 @@ "persistence", "spl" ], - "time": "2015-12-25 13:18:31" + "time": "2016-11-30 16:50:46" }, { "name": "doctrine/dbal", - "version": "v2.5.4", + "version": "v2.5.5", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "abbdfd1cff43a7b99d027af3be709bc8fc7d4769" + "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/abbdfd1cff43a7b99d027af3be709bc8fc7d4769", - "reference": "abbdfd1cff43a7b99d027af3be709bc8fc7d4769", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f8c05cd5225a320d56d4bfdb4772f10d045a0c9", + "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9", "shasum": "" }, "require": { @@ -1742,7 +1747,7 @@ }, "require-dev": { "phpunit/phpunit": "4.*", - "symfony/console": "2.*" + "symfony/console": "2.*||^3.0" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." @@ -1791,7 +1796,7 @@ "persistence", "queryobject" ], - "time": "2016-01-05 22:11:12" + "time": "2016-09-09 19:13:33" }, { "name": "doctrine/inflector", @@ -2330,16 +2335,16 @@ }, { "name": "guzzlehttp/guzzle", - "version": "6.2.1", + "version": "6.2.2", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "3f808fba627f2c5b69e2501217bf31af349c1427" + "reference": "ebf29dee597f02f09f4d5bbecc68230ea9b08f60" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/3f808fba627f2c5b69e2501217bf31af349c1427", - "reference": "3f808fba627f2c5b69e2501217bf31af349c1427", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/ebf29dee597f02f09f4d5bbecc68230ea9b08f60", + "reference": "ebf29dee597f02f09f4d5bbecc68230ea9b08f60", "shasum": "" }, "require": { @@ -2388,32 +2393,32 @@ "rest", "web service" ], - "time": "2016-07-15 17:22:37" + "time": "2016-10-08 15:01:37" }, { "name": "guzzlehttp/promises", - "version": "1.2.0", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "c10d860e2a9595f8883527fa0021c7da9e65f579" + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/c10d860e2a9595f8883527fa0021c7da9e65f579", - "reference": "c10d860e2a9595f8883527fa0021c7da9e65f579", + "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", "shasum": "" }, "require": { "php": ">=5.5.0" }, "require-dev": { - "phpunit/phpunit": "~4.0" + "phpunit/phpunit": "^4.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "1.4-dev" } }, "autoload": { @@ -2439,7 +2444,7 @@ "keywords": [ "promise" ], - "time": "2016-05-18 16:56:05" + "time": "2016-12-20 10:07:11" }, { "name": "guzzlehttp/psr7", @@ -2607,12 +2612,12 @@ "source": { "type": "git", "url": "https://github.com/Intervention/image.git", - "reference": "45a41a38bd1e5290cd51ab773013e6f041b2b711" + "reference": "75aef997472b26dbf9bb6f9823f38f5aa65c7315" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Intervention/image/zipball/45a41a38bd1e5290cd51ab773013e6f041b2b711", - "reference": "45a41a38bd1e5290cd51ab773013e6f041b2b711", + "url": "https://api.github.com/repos/Intervention/image/zipball/75aef997472b26dbf9bb6f9823f38f5aa65c7315", + "reference": "75aef997472b26dbf9bb6f9823f38f5aa65c7315", "shasum": "" }, "require": { @@ -2661,7 +2666,7 @@ "thumbnail", "watermark" ], - "time": "2016-08-19 14:41:12" + "time": "2017-01-09 20:41:27" }, { "name": "ircmaxell/password-compat", @@ -2835,16 +2840,16 @@ }, { "name": "jaybizzle/crawler-detect", - "version": "v1.2.15", + "version": "v1.2.27", "source": { "type": "git", "url": "https://github.com/JayBizzle/Crawler-Detect.git", - "reference": "82fa7ac8598d9791a14c29fc4bb9174108300787" + "reference": "44b83fc0017e9611371b748c653032fa4649af78" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/82fa7ac8598d9791a14c29fc4bb9174108300787", - "reference": "82fa7ac8598d9791a14c29fc4bb9174108300787", + "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/44b83fc0017e9611371b748c653032fa4649af78", + "reference": "44b83fc0017e9611371b748c653032fa4649af78", "shasum": "" }, "require": { @@ -2879,7 +2884,7 @@ "crawlerdetect", "php crawler detect" ], - "time": "2016-08-19 20:27:52" + "time": "2016-12-27 19:24:49" }, { "name": "jaybizzle/laravel-crawler-detect", @@ -2932,20 +2937,20 @@ }, { "name": "jeremeamia/SuperClosure", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/jeremeamia/super_closure.git", - "reference": "29a88be2a4846d27c1613aed0c9071dfad7b5938" + "reference": "443c3df3207f176a1b41576ee2a66968a507b3db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jeremeamia/super_closure/zipball/29a88be2a4846d27c1613aed0c9071dfad7b5938", - "reference": "29a88be2a4846d27c1613aed0c9071dfad7b5938", + "url": "https://api.github.com/repos/jeremeamia/super_closure/zipball/443c3df3207f176a1b41576ee2a66968a507b3db", + "reference": "443c3df3207f176a1b41576ee2a66968a507b3db", "shasum": "" }, "require": { - "nikic/php-parser": "^1.2|^2.0", + "nikic/php-parser": "^1.2|^2.0|^3.0", "php": ">=5.4", "symfony/polyfill-php56": "^1.0" }, @@ -2955,7 +2960,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-master": "2.3-dev" } }, "autoload": { @@ -2986,7 +2991,7 @@ "serialize", "tokenizer" ], - "time": "2015-12-05 17:17:57" + "time": "2016-12-07 09:37:55" }, { "name": "jlapp/swaggervel", @@ -3242,16 +3247,16 @@ }, { "name": "laravel/framework", - "version": "v5.2.43", + "version": "v5.2.45", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "5490b8f00564bb60839002f86828e27edd1e5610" + "reference": "2a79f920d5584ec6df7cf996d922a742d11095d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/5490b8f00564bb60839002f86828e27edd1e5610", - "reference": "5490b8f00564bb60839002f86828e27edd1e5610", + "url": "https://api.github.com/repos/laravel/framework/zipball/2a79f920d5584ec6df7cf996d922a742d11095d1", + "reference": "2a79f920d5584ec6df7cf996d922a742d11095d1", "shasum": "" }, "require": { @@ -3332,7 +3337,7 @@ "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).", "symfony/css-selector": "Required to use some of the crawler integration testing tools (2.8.*|3.0.*).", "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (2.8.*|3.0.*).", - "symfony/psr-http-message-bridge": "Required to psr7 bridging features (0.2.*)." + "symfony/psr-http-message-bridge": "Required to use psr7 bridging features (0.2.*)." }, "type": "library", "extra": { @@ -3368,20 +3373,20 @@ "framework", "laravel" ], - "time": "2016-08-10 12:23:59" + "time": "2016-08-26 11:44:52" }, { "name": "laravel/socialite", - "version": "v2.0.18", + "version": "v2.0.20", "source": { "type": "git", "url": "https://github.com/laravel/socialite.git", - "reference": "76ee5397fcdea5a062361392abca4eb397e519a3" + "reference": "aca8de9a93a28a119714e289c8bc599bd81aa88d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/socialite/zipball/76ee5397fcdea5a062361392abca4eb397e519a3", - "reference": "76ee5397fcdea5a062361392abca4eb397e519a3", + "url": "https://api.github.com/repos/laravel/socialite/zipball/aca8de9a93a28a119714e289c8bc599bd81aa88d", + "reference": "aca8de9a93a28a119714e289c8bc599bd81aa88d", "shasum": "" }, "require": { @@ -3422,7 +3427,7 @@ "laravel", "oauth" ], - "time": "2016-06-22 12:40:16" + "time": "2016-11-01 18:49:10" }, { "name": "laravelcollective/bus", @@ -3525,20 +3530,20 @@ }, { "name": "league/flysystem", - "version": "1.0.27", + "version": "1.0.32", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "50e2045ed70a7e75a5e30bc3662904f3b67af8a9" + "reference": "1b5c4a0031697f46e779a9d1b309c2e1b24daeab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/50e2045ed70a7e75a5e30bc3662904f3b67af8a9", - "reference": "50e2045ed70a7e75a5e30bc3662904f3b67af8a9", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1b5c4a0031697f46e779a9d1b309c2e1b24daeab", + "reference": "1b5c4a0031697f46e779a9d1b309c2e1b24daeab", "shasum": "" }, "require": { - "php": ">=5.4.0" + "php": ">=5.5.9" }, "conflict": { "league/flysystem-sftp": "<1.0.6" @@ -3604,7 +3609,7 @@ "sftp", "storage" ], - "time": "2016-08-10 08:55:11" + "time": "2016-10-19 20:38:46" }, { "name": "league/flysystem-aws-s3-v3", @@ -3932,27 +3937,27 @@ }, { "name": "maatwebsite/excel", - "version": "v2.1.3", + "version": "2.1.8", "source": { "type": "git", "url": "https://github.com/Maatwebsite/Laravel-Excel.git", - "reference": "c6ab521e8a5f2a4acc83cb575c4a09733a5e17c9" + "reference": "d9c398f7eba0ac9caf9c104dd0d55bd6a5ff231e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/c6ab521e8a5f2a4acc83cb575c4a09733a5e17c9", - "reference": "c6ab521e8a5f2a4acc83cb575c4a09733a5e17c9", + "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/d9c398f7eba0ac9caf9c104dd0d55bd6a5ff231e", + "reference": "d9c398f7eba0ac9caf9c104dd0d55bd6a5ff231e", "shasum": "" }, "require": { - "illuminate/cache": "5.0.*|5.1.*|5.2.*", - "illuminate/config": "5.0.*|5.1.*|5.2.*", - "illuminate/filesystem": "5.0.*|5.1.*|5.2.*", - "illuminate/support": "5.0.*|5.1.*|5.2.*", + "illuminate/cache": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/config": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*", "nesbot/carbon": "~1.0", "php": ">=5.5", "phpoffice/phpexcel": "1.8.*", - "tijsverkoyen/css-to-inline-styles": "~1.5" + "tijsverkoyen/css-to-inline-styles": "~2.0" }, "require-dev": { "mockery/mockery": "~0.9", @@ -3961,10 +3966,10 @@ "phpunit/phpunit": "~4.0" }, "suggest": { - "illuminate/http": "5.0.*|5.1.*|5.2.*", - "illuminate/queue": "5.0.*|5.1.*|5.2.*", - "illuminate/routing": "5.0.*|5.1.*|5.2.*", - "illuminate/view": "5.0.*|5.1.*|5.2.*" + "illuminate/http": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/queue": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/routing": "5.0.*|5.1.*|5.2.*|5.3.*", + "illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*" }, "type": "library", "autoload": { @@ -3995,20 +4000,20 @@ "import", "laravel" ], - "time": "2016-07-09 09:40:10" + "time": "2016-12-09 19:11:09" }, { "name": "maximebf/debugbar", - "version": "v1.11.1", + "version": "1.13.1", "source": { "type": "git", "url": "https://github.com/maximebf/php-debugbar.git", - "reference": "d9302891c1f0a0ac5a4f66725163a00537c6359f" + "reference": "afee79a236348e39a44cb837106b7c5b4897ac2a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/d9302891c1f0a0ac5a4f66725163a00537c6359f", - "reference": "d9302891c1f0a0ac5a4f66725163a00537c6359f", + "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/afee79a236348e39a44cb837106b7c5b4897ac2a", + "reference": "afee79a236348e39a44cb837106b7c5b4897ac2a", "shasum": "" }, "require": { @@ -4027,7 +4032,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11-dev" + "dev-master": "1.13-dev" } }, "autoload": { @@ -4056,7 +4061,7 @@ "debug", "debugbar" ], - "time": "2016-01-22 12:22:23" + "time": "2017-01-05 08:46:19" }, { "name": "meebio/omnipay-creditcall", @@ -4122,12 +4127,12 @@ "source": { "type": "git", "url": "https://github.com/meebio/omnipay-secure-trading.git", - "reference": "992224a3c8dd834ee18f6f253a77ecb4c87c1c1a" + "reference": "370a79513e12db2c4c7484cf1eff331a9993bbe0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/meebio/omnipay-secure-trading/zipball/992224a3c8dd834ee18f6f253a77ecb4c87c1c1a", - "reference": "992224a3c8dd834ee18f6f253a77ecb4c87c1c1a", + "url": "https://api.github.com/repos/meebio/omnipay-secure-trading/zipball/370a79513e12db2c4c7484cf1eff331a9993bbe0", + "reference": "370a79513e12db2c4c7484cf1eff331a9993bbe0", "shasum": "" }, "require": { @@ -4172,7 +4177,7 @@ "secure trading", "securetrading" ], - "time": "2016-01-05 09:26:36" + "time": "2016-12-14 14:58:56" }, { "name": "mfauveau/omnipay-pacnet", @@ -4258,16 +4263,16 @@ }, { "name": "monolog/monolog", - "version": "1.21.0", + "version": "1.22.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952" + "reference": "bad29cb8d18ab0315e6c477751418a82c850d558" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f42fbdfd53e306bda545845e4dbfd3e72edb4952", - "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bad29cb8d18ab0315e6c477751418a82c850d558", + "reference": "bad29cb8d18ab0315e6c477751418a82c850d558", "shasum": "" }, "require": { @@ -4278,7 +4283,7 @@ "psr/log-implementation": "1.0.0" }, "require-dev": { - "aws/aws-sdk-php": "^2.4.9", + "aws/aws-sdk-php": "^2.4.9 || ^3.0", "doctrine/couchdb": "~1.0@dev", "graylog2/gelf-php": "~1.0", "jakub-onderka/php-parallel-lint": "0.9", @@ -4332,7 +4337,7 @@ "logging", "psr-3" ], - "time": "2016-07-29 03:23:52" + "time": "2016-11-26 00:15:39" }, { "name": "mtdowling/cron-expression", @@ -4380,16 +4385,16 @@ }, { "name": "mtdowling/jmespath.php", - "version": "2.3.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/jmespath/jmespath.php.git", - "reference": "192f93e43c2c97acde7694993ab171b3de284093" + "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/192f93e43c2c97acde7694993ab171b3de284093", - "reference": "192f93e43c2c97acde7694993ab171b3de284093", + "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/adcc9531682cf87dfda21e1fd5d0e7a41d292fac", + "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac", "shasum": "" }, "require": { @@ -4431,7 +4436,7 @@ "json", "jsonpath" ], - "time": "2016-01-05 18:25:05" + "time": "2016-12-03 22:08:25" }, { "name": "nesbot/carbon", @@ -4482,16 +4487,16 @@ }, { "name": "nikic/php-parser", - "version": "v2.1.0", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "47b254ea51f1d6d5dc04b9b299e88346bf2369e3" + "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/47b254ea51f1d6d5dc04b9b299e88346bf2369e3", - "reference": "47b254ea51f1d6d5dc04b9b299e88346bf2369e3", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4dd659edadffdc2143e4753df655d866dbfeedf0", + "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0", "shasum": "" }, "require": { @@ -4529,7 +4534,7 @@ "parser", "php" ], - "time": "2016-04-19 13:41:41" + "time": "2016-09-16 12:04:44" }, { "name": "nwidart/laravel-modules", @@ -4826,16 +4831,16 @@ }, { "name": "omnipay/buckaroo", - "version": "v2.0.2", + "version": "v2.1", "source": { "type": "git", "url": "https://github.com/thephpleague/omnipay-buckaroo.git", - "reference": "aeadff6281fb4ecba1ff341bb8288e3e4a54d50e" + "reference": "7fccd4382ba87f6535cb399892c687928615dad7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/omnipay-buckaroo/zipball/aeadff6281fb4ecba1ff341bb8288e3e4a54d50e", - "reference": "aeadff6281fb4ecba1ff341bb8288e3e4a54d50e", + "url": "https://api.github.com/repos/thephpleague/omnipay-buckaroo/zipball/7fccd4382ba87f6535cb399892c687928615dad7", + "reference": "7fccd4382ba87f6535cb399892c687928615dad7", "shasum": "" }, "require": { @@ -4879,7 +4884,7 @@ "pay", "payment" ], - "time": "2016-06-22 07:37:02" + "time": "2016-08-10 04:41:17" }, { "name": "omnipay/cardsave", @@ -5344,16 +5349,16 @@ }, { "name": "omnipay/manual", - "version": "v2.2.0", + "version": "v2.2.1", "source": { "type": "git", "url": "https://github.com/thephpleague/omnipay-manual.git", - "reference": "db31b81dc3a9ccbc61a805dd9f922b7bfd0eb0e9" + "reference": "d896909093422f25a9deec13232b31ea69a72994" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/omnipay-manual/zipball/db31b81dc3a9ccbc61a805dd9f922b7bfd0eb0e9", - "reference": "db31b81dc3a9ccbc61a805dd9f922b7bfd0eb0e9", + "url": "https://api.github.com/repos/thephpleague/omnipay-manual/zipball/d896909093422f25a9deec13232b31ea69a72994", + "reference": "d896909093422f25a9deec13232b31ea69a72994", "shasum": "" }, "require": { @@ -5397,20 +5402,20 @@ "pay", "payment" ], - "time": "2016-03-29 17:52:49" + "time": "2016-12-28 03:02:15" }, { "name": "omnipay/migs", - "version": "v2.1.1", + "version": "v2.2.1", "source": { "type": "git", "url": "https://github.com/thephpleague/omnipay-migs.git", - "reference": "b49e9f2816a5cdd3c1ba2bcb46a0c73dc43c0b3b" + "reference": "c15be0960ae578d60cabc7c0a2895da41430821f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/omnipay-migs/zipball/b49e9f2816a5cdd3c1ba2bcb46a0c73dc43c0b3b", - "reference": "b49e9f2816a5cdd3c1ba2bcb46a0c73dc43c0b3b", + "url": "https://api.github.com/repos/thephpleague/omnipay-migs/zipball/c15be0960ae578d60cabc7c0a2895da41430821f", + "reference": "c15be0960ae578d60cabc7c0a2895da41430821f", "shasum": "" }, "require": { @@ -5455,7 +5460,7 @@ "pay", "payment" ], - "time": "2014-09-17 00:38:25" + "time": "2016-09-22 01:58:30" }, { "name": "omnipay/mollie", @@ -5631,16 +5636,16 @@ }, { "name": "omnipay/netbanx", - "version": "v2.1.1", + "version": "v2.2", "source": { "type": "git", "url": "https://github.com/thephpleague/omnipay-netbanx.git", - "reference": "a56900120e676385cc42d67c82985fcaaa752140" + "reference": "3684bbbf0dbdb977c1484d7252d776d81c68c813" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/omnipay-netbanx/zipball/a56900120e676385cc42d67c82985fcaaa752140", - "reference": "a56900120e676385cc42d67c82985fcaaa752140", + "url": "https://api.github.com/repos/thephpleague/omnipay-netbanx/zipball/3684bbbf0dbdb977c1484d7252d776d81c68c813", + "reference": "3684bbbf0dbdb977c1484d7252d776d81c68c813", "shasum": "" }, "require": { @@ -5684,7 +5689,7 @@ "pay", "payment" ], - "time": "2014-09-17 00:38:46" + "time": "2016-09-21 10:52:03" }, { "name": "omnipay/omnipay", @@ -5977,16 +5982,16 @@ }, { "name": "omnipay/paypal", - "version": "v2.5.5", + "version": "v2.6.3", "source": { "type": "git", "url": "https://github.com/thephpleague/omnipay-paypal.git", - "reference": "ec7fc864ae0699dd832cd727da26286a5354a35e" + "reference": "e06c8814deacc793715bb9fd3fcae5995b5d8d6b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/omnipay-paypal/zipball/ec7fc864ae0699dd832cd727da26286a5354a35e", - "reference": "ec7fc864ae0699dd832cd727da26286a5354a35e", + "url": "https://api.github.com/repos/thephpleague/omnipay-paypal/zipball/e06c8814deacc793715bb9fd3fcae5995b5d8d6b", + "reference": "e06c8814deacc793715bb9fd3fcae5995b5d8d6b", "shasum": "" }, "require": { @@ -6031,7 +6036,7 @@ "paypal", "purchase" ], - "time": "2016-07-15 04:26:38" + "time": "2016-12-22 12:35:25" }, { "name": "omnipay/pin", @@ -6151,16 +6156,16 @@ }, { "name": "omnipay/securepay", - "version": "v2.1.0", + "version": "v2.1.1", "source": { "type": "git", - "url": "https://github.com/omnipay/securepay.git", - "reference": "09503288fdb1efcd81bd0ac3c1800ce0ce13cc6e" + "url": "https://github.com/thephpleague/omnipay-securepay.git", + "reference": "e68954d455edc8337bb30e6c579d32b6e691d29a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/omnipay/securepay/zipball/09503288fdb1efcd81bd0ac3c1800ce0ce13cc6e", - "reference": "09503288fdb1efcd81bd0ac3c1800ce0ce13cc6e", + "url": "https://api.github.com/repos/thephpleague/omnipay-securepay/zipball/e68954d455edc8337bb30e6c579d32b6e691d29a", + "reference": "e68954d455edc8337bb30e6c579d32b6e691d29a", "shasum": "" }, "require": { @@ -6191,11 +6196,11 @@ }, { "name": "Omnipay Contributors", - "homepage": "https://github.com/omnipay/securepay/contributors" + "homepage": "https://github.com/thephpleague/omnipay-securepay/contributors" } ], "description": "SecurePay driver for the Omnipay payment processing library", - "homepage": "https://github.com/omnipay/securepay", + "homepage": "https://github.com/thephpleague/omnipay-securepay", "keywords": [ "gateway", "merchant", @@ -6204,7 +6209,7 @@ "payment", "securepay" ], - "time": "2014-04-14 11:26:20" + "time": "2016-11-09 04:52:42" }, { "name": "omnipay/stripe", @@ -6212,12 +6217,12 @@ "source": { "type": "git", "url": "https://github.com/thephpleague/omnipay-stripe.git", - "reference": "3d21b68403fb4214cbee07d0c4be55a1bb0b1805" + "reference": "50bdec8d7d1562c52dd56928243be4a04bcf20e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/omnipay-stripe/zipball/3d21b68403fb4214cbee07d0c4be55a1bb0b1805", - "reference": "3d21b68403fb4214cbee07d0c4be55a1bb0b1805", + "url": "https://api.github.com/repos/thephpleague/omnipay-stripe/zipball/50bdec8d7d1562c52dd56928243be4a04bcf20e6", + "reference": "50bdec8d7d1562c52dd56928243be4a04bcf20e6", "shasum": "" }, "require": { @@ -6261,7 +6266,7 @@ "payment", "stripe" ], - "time": "2016-08-06 04:11:43" + "time": "2016-12-15 09:42:45" }, { "name": "omnipay/targetpay", @@ -6643,22 +6648,30 @@ }, { "name": "psr/log", - "version": "1.0.0", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b" + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b", - "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b", + "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", "shasum": "" }, + "require": { + "php": ">=5.3.0" + }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, "autoload": { - "psr-0": { - "Psr\\Log\\": "" + "psr-4": { + "Psr\\Log\\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", @@ -6672,12 +6685,13 @@ } ], "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", "keywords": [ "log", "psr", "psr-3" ], - "time": "2012-12-21 11:40:51" + "time": "2016-10-10 12:19:37" }, { "name": "psy/psysh", @@ -6810,16 +6824,16 @@ }, { "name": "samvaughton/omnipay-barclays-epdq", - "version": "2.2.3", + "version": "2.2.4", "source": { "type": "git", "url": "https://github.com/samvaughton/omnipay-barclays-epdq.git", - "reference": "ee90e438ce7cb46ef8c1001d102b5711872dabae" + "reference": "736b0ad83e905c59500d40dc41d3ea2e49c8dee0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/samvaughton/omnipay-barclays-epdq/zipball/ee90e438ce7cb46ef8c1001d102b5711872dabae", - "reference": "ee90e438ce7cb46ef8c1001d102b5711872dabae", + "url": "https://api.github.com/repos/samvaughton/omnipay-barclays-epdq/zipball/736b0ad83e905c59500d40dc41d3ea2e49c8dee0", + "reference": "736b0ad83e905c59500d40dc41d3ea2e49c8dee0", "shasum": "" }, "require": { @@ -6869,7 +6883,7 @@ "payment" ], "abandoned": "digitickets/omnipay-barclays-epdq", - "time": "2016-06-09 16:42:25" + "time": "2016-10-12 15:09:24" }, { "name": "simshaun/recurr", @@ -6877,12 +6891,12 @@ "source": { "type": "git", "url": "https://github.com/simshaun/recurr.git", - "reference": "78a0d8bcee193bfc92540d5d0663884b2c954aa9" + "reference": "699a55524db1a086ba2c607bd891ecf03dbd572a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simshaun/recurr/zipball/78a0d8bcee193bfc92540d5d0663884b2c954aa9", - "reference": "78a0d8bcee193bfc92540d5d0663884b2c954aa9", + "url": "https://api.github.com/repos/simshaun/recurr/zipball/699a55524db1a086ba2c607bd891ecf03dbd572a", + "reference": "699a55524db1a086ba2c607bd891ecf03dbd572a", "shasum": "" }, "require": { @@ -6923,39 +6937,41 @@ "recurring", "rrule" ], - "time": "2016-08-11 21:07:21" + "time": "2016-12-19 21:12:08" }, { "name": "sly/notification-pusher", - "version": "v2.2.2", + "version": "v2.2.13", "source": { "type": "git", "url": "https://github.com/Ph3nol/NotificationPusher.git", - "reference": "6112841c4b679bc4f6cf01f6cf655e24794bc670" + "reference": "3542d8bc8cf622568b85392e83141bfdeee7e6ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Ph3nol/NotificationPusher/zipball/6112841c4b679bc4f6cf01f6cf655e24794bc670", - "reference": "6112841c4b679bc4f6cf01f6cf655e24794bc670", + "url": "https://api.github.com/repos/Ph3nol/NotificationPusher/zipball/3542d8bc8cf622568b85392e83141bfdeee7e6ff", + "reference": "3542d8bc8cf622568b85392e83141bfdeee7e6ff", "shasum": "" }, "require": { - "php": ">=5.3.2", - "symfony/console": ">=2.3", - "symfony/options-resolver": ">=2.3", - "symfony/process": ">=2.3", - "zendframework/zendservice-apple-apns": "1.*", + "doctrine/inflector": "~1.0", + "php": ">=5.5", + "symfony/console": "~2.3|~3.0", + "symfony/options-resolver": "~2.3|~3.0", + "symfony/process": "~2.3|~3.0", + "zendframework/zendservice-apple-apns": "^1.1.0", "zendframework/zendservice-google-gcm": "1.*" }, "require-dev": { "atoum/atoum": "dev-master" }, + "bin": [ + "np" + ], "type": "standalone", "autoload": { "psr-0": { - "Sly": [ - "src/" - ] + "Sly": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -6985,7 +7001,7 @@ "push", "pusher" ], - "time": "2013-12-08 20:35:03" + "time": "2016-10-10 07:02:47" }, { "name": "softcommerce/omnipay-paytrace", @@ -7088,23 +7104,24 @@ }, { "name": "swiftmailer/swiftmailer", - "version": "v5.4.3", + "version": "v5.4.5", "source": { "type": "git", "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "4cc92842069c2bbc1f28daaaf1d2576ec4dfe153" + "reference": "cd142238a339459b10da3d8234220963f392540c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/4cc92842069c2bbc1f28daaaf1d2576ec4dfe153", - "reference": "4cc92842069c2bbc1f28daaaf1d2576ec4dfe153", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/cd142238a339459b10da3d8234220963f392540c", + "reference": "cd142238a339459b10da3d8234220963f392540c", "shasum": "" }, "require": { "php": ">=5.3.3" }, "require-dev": { - "mockery/mockery": "~0.9.1" + "mockery/mockery": "~0.9.1", + "symfony/phpunit-bridge": "~3.2" }, "type": "library", "extra": { @@ -7137,20 +7154,20 @@ "mail", "mailer" ], - "time": "2016-07-08 11:51:25" + "time": "2016-12-29 10:02:40" }, { "name": "symfony/class-loader", - "version": "v3.1.3", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/symfony/class-loader.git", - "reference": "817f09b4c37b7688fa4342cb4642d8f2d81c1097" + "reference": "87cd4e69435d98de01d0162c5f9c0ac017075c63" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/class-loader/zipball/817f09b4c37b7688fa4342cb4642d8f2d81c1097", - "reference": "817f09b4c37b7688fa4342cb4642d8f2d81c1097", + "url": "https://api.github.com/repos/symfony/class-loader/zipball/87cd4e69435d98de01d0162c5f9c0ac017075c63", + "reference": "87cd4e69435d98de01d0162c5f9c0ac017075c63", "shasum": "" }, "require": { @@ -7166,7 +7183,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -7193,7 +7210,7 @@ ], "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com", - "time": "2016-07-10 08:05:47" + "time": "2016-11-29 08:26:13" }, { "name": "symfony/config", @@ -7313,16 +7330,16 @@ }, { "name": "symfony/css-selector", - "version": "v3.1.3", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "2851e1932d77ce727776154d659b232d061e816a" + "reference": "e1241f275814827c411d922ba8e64cf2a00b2994" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/2851e1932d77ce727776154d659b232d061e816a", - "reference": "2851e1932d77ce727776154d659b232d061e816a", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/e1241f275814827c411d922ba8e64cf2a00b2994", + "reference": "e1241f275814827c411d922ba8e64cf2a00b2994", "shasum": "" }, "require": { @@ -7331,7 +7348,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -7362,7 +7379,7 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2016-06-29 05:41:56" + "time": "2016-11-03 08:11:03" }, { "name": "symfony/debug", @@ -7423,25 +7440,28 @@ }, { "name": "symfony/dependency-injection", - "version": "v3.1.8", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "bd2a915cd29ccfc93c2835765a8b06dd1cc83aa9" + "reference": "037054501c41007c93b6de1b5c7a7acb83523593" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/bd2a915cd29ccfc93c2835765a8b06dd1cc83aa9", - "reference": "bd2a915cd29ccfc93c2835765a8b06dd1cc83aa9", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/037054501c41007c93b6de1b5c7a7acb83523593", + "reference": "037054501c41007c93b6de1b5c7a7acb83523593", "shasum": "" }, "require": { "php": ">=5.5.9" }, + "conflict": { + "symfony/yaml": "<3.2" + }, "require-dev": { "symfony/config": "~2.8|~3.0", "symfony/expression-language": "~2.8|~3.0", - "symfony/yaml": "~2.8.7|~3.0.7|~3.1.1|~3.2" + "symfony/yaml": "~3.2" }, "suggest": { "symfony/config": "", @@ -7452,7 +7472,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -7479,11 +7499,11 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "time": "2016-12-08 14:58:14" + "time": "2016-12-08 15:27:33" }, { "name": "symfony/event-dispatcher", - "version": "v2.8.14", + "version": "v2.8.15", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", @@ -7641,16 +7661,16 @@ }, { "name": "symfony/http-foundation", - "version": "v2.8.14", + "version": "v2.8.15", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "4f8c167732bbf3ba4284c0915f57b332091f6b68" + "reference": "216c111ac427f5f773c6a8bfc0c15f0a7dd74876" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4f8c167732bbf3ba4284c0915f57b332091f6b68", - "reference": "4f8c167732bbf3ba4284c0915f57b332091f6b68", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/216c111ac427f5f773c6a8bfc0c15f0a7dd74876", + "reference": "216c111ac427f5f773c6a8bfc0c15f0a7dd74876", "shasum": "" }, "require": { @@ -7692,7 +7712,7 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2016-11-15 23:02:12" + "time": "2016-11-27 04:20:28" }, { "name": "symfony/http-kernel", @@ -7778,16 +7798,16 @@ }, { "name": "symfony/options-resolver", - "version": "v3.1.3", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "30605874d99af0cde6c41fd39e18546330c38100" + "reference": "45940bcad6388b3b6058107eca67ced738d205bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/30605874d99af0cde6c41fd39e18546330c38100", - "reference": "30605874d99af0cde6c41fd39e18546330c38100", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/45940bcad6388b3b6058107eca67ced738d205bb", + "reference": "45940bcad6388b3b6058107eca67ced738d205bb", "shasum": "" }, "require": { @@ -7796,7 +7816,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -7828,7 +7848,7 @@ "configuration", "options" ], - "time": "2016-05-12 15:59:27" + "time": "2016-05-13 18:13:23" }, { "name": "symfony/polyfill-mbstring", @@ -8005,16 +8025,16 @@ }, { "name": "symfony/polyfill-php56", - "version": "v1.2.0", + "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php56.git", - "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a" + "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/3edf57a8fbf9a927533344cef65ad7e1cf31030a", - "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/1dd42b9b89556f18092f3d1ada22cb05ac85383c", + "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c", "shasum": "" }, "require": { @@ -8024,7 +8044,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2-dev" + "dev-master": "1.3-dev" } }, "autoload": { @@ -8057,20 +8077,20 @@ "portable", "shim" ], - "time": "2016-05-18 14:26:46" + "time": "2016-11-14 01:06:16" }, { "name": "symfony/polyfill-util", - "version": "v1.2.0", + "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-util.git", - "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99" + "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/ef830ce3d218e622b221d6bfad42c751d974bf99", - "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/746bce0fca664ac0a575e465f65c6643faddf7fb", + "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb", "shasum": "" }, "require": { @@ -8079,7 +8099,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2-dev" + "dev-master": "1.3-dev" } }, "autoload": { @@ -8109,7 +8129,7 @@ "polyfill", "shim" ], - "time": "2016-05-18 14:26:46" + "time": "2016-11-14 01:06:16" }, { "name": "symfony/process", @@ -8364,25 +8384,31 @@ }, { "name": "symfony/yaml", - "version": "v3.1.3", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "1819adf2066880c7967df7180f4f662b6f0567ac" + "reference": "a7095af4b97a0955f85c8989106c249fa649011f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/1819adf2066880c7967df7180f4f662b6f0567ac", - "reference": "1819adf2066880c7967df7180f4f662b6f0567ac", + "url": "https://api.github.com/repos/symfony/yaml/zipball/a7095af4b97a0955f85c8989106c249fa649011f", + "reference": "a7095af4b97a0955f85c8989106c249fa649011f", "shasum": "" }, "require": { "php": ">=5.5.9" }, + "require-dev": { + "symfony/console": "~2.8|~3.0" + }, + "suggest": { + "symfony/console": "For validating YAML files using the lint command" + }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -8409,33 +8435,33 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2016-07-17 14:02:08" + "time": "2016-12-10 10:07:06" }, { "name": "tijsverkoyen/css-to-inline-styles", - "version": "1.5.5", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", - "reference": "9753fc340726e327e4d48b7c0604f85475ae0bc3" + "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/9753fc340726e327e4d48b7c0604f85475ae0bc3", - "reference": "9753fc340726e327e4d48b7c0604f85475ae0bc3", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b", + "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b", "shasum": "" }, "require": { - "php": ">=5.3.0", - "symfony/css-selector": "~2.1|~3.0" + "php": "^5.5 || ^7", + "symfony/css-selector": "^2.7|~3.0" }, "require-dev": { - "phpunit/phpunit": "~4.0" + "phpunit/phpunit": "~4.8|5.1.*" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.5.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -8445,7 +8471,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD" + "BSD-3-Clause" ], "authors": [ { @@ -8456,25 +8482,25 @@ ], "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", - "time": "2015-12-08 16:14:14" + "time": "2016-09-20 12:50:39" }, { "name": "true/punycode", - "version": "v2.1.0", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/true/php-punycode.git", - "reference": "74033cbe9fdd3eba597f8af501947a125b3b8087" + "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/true/php-punycode/zipball/74033cbe9fdd3eba597f8af501947a125b3b8087", - "reference": "74033cbe9fdd3eba597f8af501947a125b3b8087", + "url": "https://api.github.com/repos/true/php-punycode/zipball/a4d0c11a36dd7f4e7cd7096076cab6d3378a071e", + "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e", "shasum": "" }, "require": { - "ext-mbstring": "*", - "php": ">=5.3.0" + "php": ">=5.3.0", + "symfony/polyfill-mbstring": "^1.3" }, "require-dev": { "phpunit/phpunit": "~4.7", @@ -8502,7 +8528,7 @@ "idna", "punycode" ], - "time": "2016-08-09 14:50:44" + "time": "2016-11-16 10:37:54" }, { "name": "turbo124/laravel-push-notification", @@ -8708,16 +8734,16 @@ }, { "name": "vlucas/phpdotenv", - "version": "v2.3.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "9ca5644c536654e9509b9d257f53c58630eb2a6a" + "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/9ca5644c536654e9509b9d257f53c58630eb2a6a", - "reference": "9ca5644c536654e9509b9d257f53c58630eb2a6a", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c", + "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c", "shasum": "" }, "require": { @@ -8729,7 +8755,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-master": "2.4-dev" } }, "autoload": { @@ -8754,7 +8780,7 @@ "env", "environment" ], - "time": "2016-06-14 14:14:52" + "time": "2016-09-01 10:05:43" }, { "name": "webpatser/laravel-countries", @@ -8762,12 +8788,12 @@ "source": { "type": "git", "url": "https://github.com/webpatser/laravel-countries.git", - "reference": "2a310c0ff1b112d3710223d3bd51e8a30c5a304d" + "reference": "0a7512a3b00eb1c9a3eabe563b4ae73693fe2f8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webpatser/laravel-countries/zipball/2a310c0ff1b112d3710223d3bd51e8a30c5a304d", - "reference": "2a310c0ff1b112d3710223d3bd51e8a30c5a304d", + "url": "https://api.github.com/repos/webpatser/laravel-countries/zipball/0a7512a3b00eb1c9a3eabe563b4ae73693fe2f8a", + "reference": "0a7512a3b00eb1c9a3eabe563b4ae73693fe2f8a", "shasum": "" }, "require": { @@ -8806,24 +8832,24 @@ "iso_3166_3", "laravel" ], - "time": "2016-02-25 10:29:59" + "time": "2016-11-24 10:51:16" }, { "name": "websight/l5-google-cloud-storage", - "version": "1.0.3", + "version": "v1.1.0", "source": { "type": "git", "url": "https://github.com/websightgmbh/l5-google-cloud-storage.git", - "reference": "c1cac9985dfce60010234c9dca127f3543d2d594" + "reference": "350245570862ae58497a3a6ef966306651c44771" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/websightgmbh/l5-google-cloud-storage/zipball/c1cac9985dfce60010234c9dca127f3543d2d594", - "reference": "c1cac9985dfce60010234c9dca127f3543d2d594", + "url": "https://api.github.com/repos/websightgmbh/l5-google-cloud-storage/zipball/350245570862ae58497a3a6ef966306651c44771", + "reference": "350245570862ae58497a3a6ef966306651c44771", "shasum": "" }, "require": { - "illuminate/support": "~5.0.17|5.1.*|5.2.*", + "illuminate/support": "~5.0.17|5.1.*|5.2.*|5.3.*", "superbalist/flysystem-google-storage": "^1.0" }, "type": "library", @@ -8849,7 +8875,7 @@ "laravel", "laravel5" ], - "time": "2016-03-04 11:57:00" + "time": "2016-09-21 08:17:51" }, { "name": "wepay/php-sdk", @@ -8931,21 +8957,21 @@ }, { "name": "wildbit/swiftmailer-postmark", - "version": "2.0.4", + "version": "2.0.5", "source": { "type": "git", "url": "https://github.com/wildbit/swiftmailer-postmark.git", - "reference": "175500a1f29b8a6192a2f0a147145aae345e6a21" + "reference": "7b69441324b40517d4ef69703677853fb367ee4e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wildbit/swiftmailer-postmark/zipball/175500a1f29b8a6192a2f0a147145aae345e6a21", - "reference": "175500a1f29b8a6192a2f0a147145aae345e6a21", + "url": "https://api.github.com/repos/wildbit/swiftmailer-postmark/zipball/7b69441324b40517d4ef69703677853fb367ee4e", + "reference": "7b69441324b40517d4ef69703677853fb367ee4e", "shasum": "" }, "require": { "guzzlehttp/guzzle": "~6.0", - "swiftmailer/swiftmailer": "~5.1" + "swiftmailer/swiftmailer": ">=4.1.5" }, "require-dev": { "phpunit/phpunit": "~4.5" @@ -8970,7 +8996,7 @@ } ], "description": "A Swiftmailer Transport for Postmark.", - "time": "2016-07-26 11:42:22" + "time": "2016-09-13 20:43:41" }, { "name": "zendframework/zend-escaper", @@ -9167,31 +9193,31 @@ }, { "name": "zendframework/zend-stdlib", - "version": "3.0.1", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/zendframework/zend-stdlib.git", - "reference": "8bafa58574204bdff03c275d1d618aaa601588ae" + "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/8bafa58574204bdff03c275d1d618aaa601588ae", - "reference": "8bafa58574204bdff03c275d1d618aaa601588ae", + "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78", + "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78", "shasum": "" }, "require": { - "php": "^5.5 || ^7.0" + "php": "^5.6 || ^7.0" }, "require-dev": { "athletic/athletic": "~0.1", - "fabpot/php-cs-fixer": "1.7.*", - "phpunit/phpunit": "~4.0" + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "^2.6.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev", - "dev-develop": "3.1-dev" + "dev-master": "3.1-dev", + "dev-develop": "3.2-dev" } }, "autoload": { @@ -9208,7 +9234,7 @@ "stdlib", "zf2" ], - "time": "2016-04-12 21:19:36" + "time": "2016-09-13 14:38:50" }, { "name": "zendframework/zend-uri", @@ -9417,16 +9443,16 @@ }, { "name": "zircote/swagger-php", - "version": "2.0.7", + "version": "2.0.8", "source": { "type": "git", "url": "https://github.com/zircote/swagger-php.git", - "reference": "299df0b51f641225ed50ba5199b21e8cfc34e4f4" + "reference": "39f4c30692a4925597e7d4280fc58794fb4f3730" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zircote/swagger-php/zipball/299df0b51f641225ed50ba5199b21e8cfc34e4f4", - "reference": "299df0b51f641225ed50ba5199b21e8cfc34e4f4", + "url": "https://api.github.com/repos/zircote/swagger-php/zipball/39f4c30692a4925597e7d4280fc58794fb4f3730", + "reference": "39f4c30692a4925597e7d4280fc58794fb4f3730", "shasum": "" }, "require": { @@ -9435,7 +9461,8 @@ "symfony/finder": "*" }, "require-dev": { - "squizlabs/php_codesniffer": "2.*", + "phpunit/phpunit": ">=4.8", + "squizlabs/php_codesniffer": ">=2.7", "zendframework/zend-form": "<2.8" }, "bin": [ @@ -9474,30 +9501,31 @@ "rest", "service discovery" ], - "time": "2016-05-27 09:35:51" + "time": "2016-12-16 12:39:03" } ], "packages-dev": [ { "name": "behat/gherkin", - "version": "v4.4.1", + "version": "v4.4.5", "source": { "type": "git", "url": "https://github.com/Behat/Gherkin.git", - "reference": "1576b485c0f92ef6d27da9c4bbfc57ee30cf6911" + "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/1576b485c0f92ef6d27da9c4bbfc57ee30cf6911", - "reference": "1576b485c0f92ef6d27da9c4bbfc57ee30cf6911", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/5c14cff4f955b17d20d088dec1bde61c0539ec74", + "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74", "shasum": "" }, "require": { "php": ">=5.3.1" }, "require-dev": { - "phpunit/phpunit": "~4.0", - "symfony/yaml": "~2.1" + "phpunit/phpunit": "~4.5|~5", + "symfony/phpunit-bridge": "~2.7|~3", + "symfony/yaml": "~2.3|~3" }, "suggest": { "symfony/yaml": "If you want to parse features, represented in YAML files" @@ -9534,20 +9562,20 @@ "gherkin", "parser" ], - "time": "2015-12-30 14:47:00" + "time": "2016-10-30 11:50:56" }, { "name": "codeception/c3", - "version": "2.0.7", + "version": "2.0.8", "source": { "type": "git", "url": "https://github.com/Codeception/c3.git", - "reference": "51eec2c3a8e093deb621f58004f0393dc0871983" + "reference": "d71e5d2b015169fce61c923bfbf41c3d83087604" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/c3/zipball/51eec2c3a8e093deb621f58004f0393dc0871983", - "reference": "51eec2c3a8e093deb621f58004f0393dc0871983", + "url": "https://api.github.com/repos/Codeception/c3/zipball/d71e5d2b015169fce61c923bfbf41c3d83087604", + "reference": "d71e5d2b015169fce61c923bfbf41c3d83087604", "shasum": "" }, "require": { @@ -9584,20 +9612,20 @@ "code coverage", "codecoverage" ], - "time": "2016-06-27 16:49:12" + "time": "2016-09-16 22:57:33" }, { "name": "codeception/codeception", - "version": "2.2.4", + "version": "2.2.7", "source": { "type": "git", "url": "https://github.com/Codeception/Codeception.git", - "reference": "ea617b8b55e6e33cdd47edeafde5d3f6466049e2" + "reference": "86770e89d266557c20dd0b1de5390e706f4770c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Codeception/zipball/ea617b8b55e6e33cdd47edeafde5d3f6466049e2", - "reference": "ea617b8b55e6e33cdd47edeafde5d3f6466049e2", + "url": "https://api.github.com/repos/Codeception/Codeception/zipball/86770e89d266557c20dd0b1de5390e706f4770c1", + "reference": "86770e89d266557c20dd0b1de5390e706f4770c1", "shasum": "" }, "require": { @@ -9608,21 +9636,21 @@ "guzzlehttp/guzzle": ">=4.1.4 <7.0", "guzzlehttp/psr7": "~1.0", "php": ">=5.4.0 <8.0", - "phpunit/php-code-coverage": ">=2.1.3", - "phpunit/phpunit": ">4.8.20 <5.5", + "phpunit/php-code-coverage": ">=2.1.3 <5.0", + "phpunit/phpunit": ">4.8.20 <6.0", "sebastian/comparator": "~1.1", "sebastian/diff": "^1.4", "symfony/browser-kit": ">=2.7 <4.0", "symfony/console": ">=2.7 <4.0", "symfony/css-selector": ">=2.7 <4.0", - "symfony/dom-crawler": ">=2.7 <4.0", + "symfony/dom-crawler": ">=2.7.5 <4.0", "symfony/event-dispatcher": ">=2.7 <4.0", "symfony/finder": ">=2.7 <4.0", "symfony/yaml": ">=2.7 <4.0" }, "require-dev": { "codeception/specify": "~0.3", - "facebook/php-sdk-v4": "~5.0", + "facebook/graph-sdk": "~5.3", "flow/jsonpath": "~0.2", "league/factory-muffin": "^3.0", "league/factory-muffin-faker": "^1.0", @@ -9631,7 +9659,8 @@ "pda/pheanstalk": "~3.0", "php-amqplib/php-amqplib": "~2.4", "predis/predis": "^1.0", - "squizlabs/php_codesniffer": "~2.0" + "squizlabs/php_codesniffer": "~2.0", + "vlucas/phpdotenv": "^2.4.0" }, "suggest": { "codeception/specify": "BDD-style code blocks", @@ -9675,7 +9704,7 @@ "functional testing", "unit testing" ], - "time": "2016-08-14 12:28:58" + "time": "2016-12-05 04:12:24" }, { "name": "doctrine/instantiator", @@ -9733,24 +9762,25 @@ }, { "name": "facebook/webdriver", - "version": "1.1.3", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/facebook/php-webdriver.git", - "reference": "b7186fb1bcfda956d237f59face250d06ef47253" + "reference": "af21de3ae5306a8ca0bcc02a19735dadc43e83f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/b7186fb1bcfda956d237f59face250d06ef47253", - "reference": "b7186fb1bcfda956d237f59face250d06ef47253", + "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/af21de3ae5306a8ca0bcc02a19735dadc43e83f3", + "reference": "af21de3ae5306a8ca0bcc02a19735dadc43e83f3", "shasum": "" }, "require": { "ext-curl": "*", - "php": ">=5.3.19" + "php": "^5.5 || ~7.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^1.11", + "php-mock/php-mock-phpunit": "^1.1", "phpunit/phpunit": "4.6.* || ~5.0", "squizlabs/php_codesniffer": "^2.6" }, @@ -9775,7 +9805,7 @@ "selenium", "webdriver" ], - "time": "2016-08-10 00:44:08" + "time": "2016-10-14 15:16:51" }, { "name": "phpdocumentor/reflection-common", @@ -9833,16 +9863,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "3.1.0", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "9270140b940ff02e58ec577c237274e92cd40cdd" + "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9270140b940ff02e58ec577c237274e92cd40cdd", - "reference": "9270140b940ff02e58ec577c237274e92cd40cdd", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e", + "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e", "shasum": "" }, "require": { @@ -9874,20 +9904,20 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2016-06-10 09:48:41" + "time": "2016-09-30 07:12:33" }, { "name": "phpdocumentor/type-resolver", - "version": "0.2", + "version": "0.2.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443" + "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/b39c7a5b194f9ed7bd0dd345c751007a41862443", - "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb", + "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb", "shasum": "" }, "require": { @@ -9921,7 +9951,7 @@ "email": "me@mikevanriel.com" } ], - "time": "2016-06-10 07:14:17" + "time": "2016-11-25 06:54:22" }, { "name": "phpspec/php-diff", @@ -9959,16 +9989,16 @@ }, { "name": "phpspec/phpspec", - "version": "2.5.1", + "version": "2.5.5", "source": { "type": "git", "url": "https://github.com/phpspec/phpspec.git", - "reference": "531d00ee76e9ae98279ed4dbb2419e5e0f7fb82d" + "reference": "db395f435eb8e820448e8690de1a8db86d5dd8af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/phpspec/zipball/531d00ee76e9ae98279ed4dbb2419e5e0f7fb82d", - "reference": "531d00ee76e9ae98279ed4dbb2419e5e0f7fb82d", + "url": "https://api.github.com/repos/phpspec/phpspec/zipball/db395f435eb8e820448e8690de1a8db86d5dd8af", + "reference": "db395f435eb8e820448e8690de1a8db86d5dd8af", "shasum": "" }, "require": { @@ -10033,20 +10063,20 @@ "testing", "tests" ], - "time": "2016-07-16 08:34:07" + "time": "2016-12-04 21:03:31" }, { "name": "phpspec/prophecy", - "version": "v1.6.1", + "version": "v1.6.2", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "58a8137754bc24b25740d4281399a4a3596058e0" + "reference": "6c52c2722f8460122f96f86346600e1077ce22cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/58a8137754bc24b25740d4281399a4a3596058e0", - "reference": "58a8137754bc24b25740d4281399a4a3596058e0", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/6c52c2722f8460122f96f86346600e1077ce22cb", + "reference": "6c52c2722f8460122f96f86346600e1077ce22cb", "shasum": "" }, "require": { @@ -10054,10 +10084,11 @@ "php": "^5.3|^7.0", "phpdocumentor/reflection-docblock": "^2.0|^3.0.2", "sebastian/comparator": "^1.1", - "sebastian/recursion-context": "^1.0" + "sebastian/recursion-context": "^1.0|^2.0" }, "require-dev": { - "phpspec/phpspec": "^2.0" + "phpspec/phpspec": "^2.0", + "phpunit/phpunit": "^4.8 || ^5.6.5" }, "type": "library", "extra": { @@ -10095,7 +10126,7 @@ "spy", "stub" ], - "time": "2016-06-07 08:13:47" + "time": "2016-11-21 14:58:47" }, { "name": "phpunit/php-code-coverage", @@ -10161,16 +10192,16 @@ }, { "name": "phpunit/php-file-iterator", - "version": "1.4.1", + "version": "1.4.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0" + "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0", - "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5", + "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5", "shasum": "" }, "require": { @@ -10204,7 +10235,7 @@ "filesystem", "iterator" ], - "time": "2015-06-21 13:08:43" + "time": "2016-10-03 07:40:28" }, { "name": "phpunit/php-text-template", @@ -10293,16 +10324,16 @@ }, { "name": "phpunit/php-token-stream", - "version": "1.4.8", + "version": "1.4.9", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da" + "reference": "3b402f65a4cc90abf6e1104e388b896ce209631b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da", - "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3b402f65a4cc90abf6e1104e388b896ce209631b", + "reference": "3b402f65a4cc90abf6e1104e388b896ce209631b", "shasum": "" }, "require": { @@ -10338,20 +10369,20 @@ "keywords": [ "tokenizer" ], - "time": "2015-09-15 10:49:45" + "time": "2016-11-15 14:06:22" }, { "name": "phpunit/phpunit", - "version": "4.8.27", + "version": "4.8.31", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "c062dddcb68e44b563f66ee319ddae2b5a322a90" + "reference": "98b2b39a520766bec663ff5b7ff1b729db9dbfe3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c062dddcb68e44b563f66ee319ddae2b5a322a90", - "reference": "c062dddcb68e44b563f66ee319ddae2b5a322a90", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/98b2b39a520766bec663ff5b7ff1b729db9dbfe3", + "reference": "98b2b39a520766bec663ff5b7ff1b729db9dbfe3", "shasum": "" }, "require": { @@ -10367,7 +10398,7 @@ "phpunit/php-text-template": "~1.2", "phpunit/php-timer": "^1.0.6", "phpunit/phpunit-mock-objects": "~2.3", - "sebastian/comparator": "~1.1", + "sebastian/comparator": "~1.2.2", "sebastian/diff": "~1.2", "sebastian/environment": "~1.3", "sebastian/exporter": "~1.2", @@ -10410,7 +10441,7 @@ "testing", "xunit" ], - "time": "2016-07-21 06:48:14" + "time": "2016-12-09 02:45:31" }, { "name": "phpunit/phpunit-mock-objects", @@ -10470,22 +10501,22 @@ }, { "name": "sebastian/comparator", - "version": "1.2.0", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "937efb279bd37a375bcadf584dec0726f84dbf22" + "reference": "6a1ed12e8b2409076ab22e3897126211ff8b1f7f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22", - "reference": "937efb279bd37a375bcadf584dec0726f84dbf22", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/6a1ed12e8b2409076ab22e3897126211ff8b1f7f", + "reference": "6a1ed12e8b2409076ab22e3897126211ff8b1f7f", "shasum": "" }, "require": { "php": ">=5.3.3", "sebastian/diff": "~1.2", - "sebastian/exporter": "~1.2" + "sebastian/exporter": "~1.2 || ~2.0" }, "require-dev": { "phpunit/phpunit": "~4.4" @@ -10530,7 +10561,7 @@ "compare", "equality" ], - "time": "2015-07-26 15:48:44" + "time": "2016-11-19 09:18:40" }, { "name": "sebastian/diff", @@ -10842,16 +10873,16 @@ }, { "name": "symfony/browser-kit", - "version": "v3.1.3", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "d2a07cc11c5fa94820240b1e67592ffb18e347b9" + "reference": "34348c2691ce6254e8e008026f4c5e72c22bb318" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/d2a07cc11c5fa94820240b1e67592ffb18e347b9", - "reference": "d2a07cc11c5fa94820240b1e67592ffb18e347b9", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/34348c2691ce6254e8e008026f4c5e72c22bb318", + "reference": "34348c2691ce6254e8e008026f4c5e72c22bb318", "shasum": "" }, "require": { @@ -10868,7 +10899,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -10895,20 +10926,20 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", - "time": "2016-07-26 08:04:17" + "time": "2016-10-13 13:35:11" }, { "name": "symfony/dom-crawler", - "version": "v3.1.3", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "c7b9b8db3a6f2bac76dcd9a9db5446f2591897f9" + "reference": "1638c7534a8a2fa0bf9e979f9aacb6d7e8e9e24e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c7b9b8db3a6f2bac76dcd9a9db5446f2591897f9", - "reference": "c7b9b8db3a6f2bac76dcd9a9db5446f2591897f9", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/1638c7534a8a2fa0bf9e979f9aacb6d7e8e9e24e", + "reference": "1638c7534a8a2fa0bf9e979f9aacb6d7e8e9e24e", "shasum": "" }, "require": { @@ -10924,7 +10955,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -10951,24 +10982,24 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2016-07-26 08:04:17" + "time": "2016-12-10 14:24:53" }, { "name": "webmozart/assert", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "bb2d123231c095735130cc8f6d31385a44c7b308" + "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/bb2d123231c095735130cc8f6d31385a44c7b308", - "reference": "bb2d123231c095735130cc8f6d31385a44c7b308", + "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f", + "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f", "shasum": "" }, "require": { - "php": "^5.3.3|^7.0" + "php": "^5.3.3 || ^7.0" }, "require-dev": { "phpunit/phpunit": "^4.6", @@ -10977,7 +11008,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2-dev" + "dev-master": "1.3-dev" } }, "autoload": { @@ -11001,7 +11032,7 @@ "check", "validate" ], - "time": "2016-08-09 15:02:57" + "time": "2016-11-23 20:04:58" } ], "aliases": [],