-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhaestus.cabal
59 lines (55 loc) · 1.48 KB
/
Phaestus.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Phaestus
version: 0.1
cabal-version: >= 1.8
build-type: Simple
author: Kelly Kinkade <[email protected]>
synopsis: PHP parser
homepage: https://github.com/ab9rf/phaestus
category: Language
copyright: 2013-2018 Kelly Kinkade <[email protected]>
stability: experimental
maintainer: Kelly Kinkade <[email protected]>
description: Parser for PHP.
license: OtherLicense
license-file: COPYING
library
hs-source-dirs: src
build-depends:
base >= 4 && < 5,
array,
parsec,
mtl
ghc-options: -Wall
other-modules: Main
exposed-modules:
AST,
Parser,
Tokenizer
executable Phaestus
hs-source-dirs: src
main-is: Main.hs
build-depends:
base >= 4 && < 5,
array,
parsec,
mtl
ghc-options: -Wall
other-modules:
Parser,
AST,
Tokenizer
test-suite test
hs-source-dirs: src/test
main-is: main.hs
type: exitcode-stdio-1.0
build-depends:
Phaestus,
base,
QuickCheck,
hspec
other-modules:
ParserSpec,
TokenizerSpec
source-repository head
type: git
location: git://github.com/ab9rf/phaestus.git