-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.66 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 1.66 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "nails/command-line-tool",
"version": "1.4.0",
"keywords":
[
"Nails",
"Shed Collective",
"CodeIgniter"
],
"homepage": "http://nailsapp.co.uk",
"description": "The command line tool for Nails makes creating new projects easy, and provides a simple interface to the installed console module.",
"license": "MIT",
"authors":
[
{
"name": "Pablo de la Peña",
"email": "p@nailsapp.co.uk"
}
],
"support":
{
"email": "hello@nailsapp.co.uk"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require":
{
"php": ">=8.1",
"ext-json": "*",
"ext-zip": "*",
"ext-curl": "*",
"bamarni/composer-bin-plugin": "^1.4",
"symfony/console": "^6.4",
"symfony/finder": "^6.4"
},
"require-dev":
{
"phpunit/phpunit": "10.*",
"phpstan/phpstan": "2.*"
},
"autoload":
{
"psr-4":
{
"Nails\\Cli\\": "src/"
}
},
"scripts":
{
"post-install-cmd":
[
"@composer bin all install --ansi"
],
"post-update-cmd":
[
"@composer bin all update --ansi"
],
"build":
[
"./scripts/build.sh"
],
"test":
[
"./scripts/test.sh"
],
"analyse": "./vendor/bin/phpstan analyse -c .phpstan/config.neon"
},
"bin":
[
"dist/nails",
"dist/nails-cli"
],
"config":
{
"allow-plugins":
{
"bamarni/composer-bin-plugin": true
}
}
}