# cashfree/4.8.0/includes/wc-cashfree-scripts.php

Cashfree for WooCommerce, version 4.8.0. 20 lines.

- Page: https://pluginprobe.com/plugins/cashfree/4.8.0/code/includes/wc-cashfree-scripts.php
- Raw: https://pluginprobe.com/plugins/cashfree/4.8.0/raw/includes/wc-cashfree-scripts.php
- Modified: 2026-08-27T17:49:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/cashfree/4.8.0/code/includes/wc-cashfree-scripts.php#L10-L20`.

```php
<?php
/**
 * Cashfree scripts
 */

defined( 'ABSPATH' ) || exit;

return array(
	'wc-cashfree-checkout-js'       => array(
		'src'     => 'https://sdk.cashfree.com/js/v3/cashfree.js',
		'deps'    => array(),
		'version' => WC_CASHFREE_VERSION,
	),
	'wc-cashfree-checkout' => array(
		'src'     => WC_CASHFREE_DIR_URL . 'assets/js/checkout.js',
		'deps'    => array(),
		'version' => WC_CASHFREE_VERSION,
	),
);

```
