-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.39 KB
/
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
46
47
48
49
50
51
52
{
"name": "nails/command-line-tool",
"version": "1.3.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": "[email protected]"
}
],
"support": {
"email": "[email protected]"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-zip": "*",
"ext-curl": "*",
"bamarni/composer-bin-plugin": "^1.4",
"symfony/console": "^5.2",
"symfony/finder": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"phpstan/phpstan": "1.*"
},
"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"
]
}