-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.6 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.6 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
{
"name": "nails/command-line-tool",
"version": "1.4.3",
"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\u00f1a",
"email": "p@nailsapp.co.uk"
}
],
"support": {
"email": "hello@nailsapp.co.uk"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"ext-json": "*",
"ext-zip": "*",
"ext-curl": "*",
"bamarni/composer-bin-plugin": "^1.4",
"symfony/console": "^7.0",
"symfony/finder": "^6.4"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"phpstan/phpstan": "^2.0"
},
"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 --memory-limit=512M"
},
"bin": [
"dist/nails",
"dist/nails-cli"
],
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}