-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1004 Bytes
/
composer.json
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
{
"name": "leocavalcante/ippo",
"description": "Immutable Plain-old PHP Objects",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^8.0",
"phan/phan": "^1.2"
},
"license": "BSD-3-Clause",
"authors": [
{
"name": "leocavalcante",
"email": "lc@leocavalcante.com"
}
],
"minimum-stability": "stable",
"require": {
"twig/twig": "^2.6",
"symfony/yaml": "^4.2"
},
"autoload": {
"psr-4": {
"LeoCavalcante\\Ippo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LeoCavalcante\\Test\\Ippo\\": "tests/"
}
},
"bin": [
"bin/ippo",
"bin/ippo.bat"
],
"scripts": {
"ippo": "@php ippo example/definitions.yml example/",
"test": "phpunit",
"phan": "phan",
"all": [
"@composer ippo",
"@composer test",
"@composer phan"
]
}
}