Sorcerer's IsleCode cfRegex / files

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