Sorcerer's IsleCode cfRegex / files

 1cfRegex
 2
 3* Version:       0.3
 4* License:       LGPLv3
 5* Homepage:      https://www.sorcerersisle.com/software/cfregex
 6* Documentation: https://docs.sorcerersisle.com/cfregex
 7* Repository:    https://code.sorcerersisle.com/cfregex.git
 8* Issues:        https://github.com/boughtonp/cfregex/issues
 9
10
11Description
12-----------
13cfRegex is a project to provide a complete set of regex functionality
14for CFML, with an aim to make regex a first-class feature which is
15easy for everyone to use.
16
17It provides a Regex object, cfregex tag, and a selection of functions,
18all designed to be used instead of the existing regex functions.
19
20For full details of what is provided see docs.pdf for documentation.
21
22
23Requirements
24------------
25
26cfRegex will run on any JVM-based CFML engine that supports CFCs, including:
27
28* Lucee 5.3 and above.
29* ColdFusion 9 and above.
30* OpenBD 2.x and above.
31* Railo / Lucee 4.x
32
33A minimum JRE/JDK version of 8 is recommended.
34
35cfRegex requires the ability to create Java objects, which may be
36disabled on some shared hosting.
37
38
39Licensing & Credits
40-------------------
41
42This project is available under the terms of the LGPLv3 license.
43See license.txt to understand your rights and obligations.
44
45cfRegex is created and maintained by Peter Boughton.
46
47
48Contributing
49------------
50
51This project aims to provide a complete set of regex functionality for CFML.
52
53Bug fixes, backwards-compatible improvements and additions are welcome,
54but please discuss first (either raise an issue or send an email).
55
56Changes are accepted as either pull requests or patch files.
57
58
59
60/eof