-
Notifications
You must be signed in to change notification settings - Fork 1
/
language-php.cabal
46 lines (43 loc) · 1.07 KB
/
language-php.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
-- Initial language-php.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: language-php
version: 0.1.0.0
-- synopsis:
-- description:
license: MIT
license-file: LICENSE
author: Daan Rijks
maintainer: daanrijks@gmail.com
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
-- other-modules:
-- other-extensions:
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base >=4.10 && <4.11
, containers >=0.5.10.2 && <0.6
, megaparsec >=6.3.0 && <6.4
, prettyprinter >=1.1.1 && <1.2
, text >=1.2.2.2 && < 1.3
exposed-modules:
Language.PHP
, Language.PHP.AST
, Language.PHP.AST.Ops
, Language.PHP.Parser
, Language.PHP.Pretty
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Test.hs
build-depends:
base >=4.10 && <4.11
, language-php
, hedgehog >= 0.5.1 && <0.6
, tasty >= 0.11.3 && < 0.12
, tasty-hedgehog >= 0.1.0.1 && < 0.2