alexpts / symfony-asset-strategy-last-modify
symfony 资产组件的策略
2.0.1
2018-01-30 11:25 UTC
Requires
- php: ^7.1
- symfony/asset: ^3.3|^4.0
Requires (Dev)
- codeclimate/php-test-reporter: dev-master
- phpunit/phpunit: ^6.2
This package is auto-updated.
Last update: 2024-09-15 02:16:41 UTC
README
symfony 资产组件的策略
从最后修改文件时间获取版本的 symfony 资产组件策略
安装
$ composer require alexpts/symfony-asset-strategy-last-modify
演示
$package = new Package(new LastModifyStrategy($assertDirPath)); $url = $package->getUrl('/jquery.js'); // /jquery.js?v=1472155706
使用 CDN
$package = new Package(new LastModifyStrategy($assertDirPath, 'cdn.host.org')); $url = $package->getUrl('/jquery.js'); // //cdn.host.org/jquery.js?v=1472155706