-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
129 lines (129 loc) · 3.3 KB
/
composer.json
File metadata and controls
129 lines (129 loc) · 3.3 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "nails/common",
"keywords":
[
"Nails",
"Shed Collective",
"CodeIgniter"
],
"homepage": "http://nailsapp.co.uk",
"description": "Nails is a PHP framework to make building hand-crafted, exhilarating web apps fast and painless.",
"license": "MIT",
"authors":
[
{
"name": "Pablo de la Pena",
"email": "p@nailsapp.co.uk",
"homepage": "http://nailsapp.co.uk",
"role": "Developer"
},
{
"name": "Gary Duncan",
"email": "g@nailsapp.co.uk",
"homepage": "http://nailsapp.co.uk",
"role": "Developer"
}
],
"support":
{
"email": "hello@nailsapp.co.uk"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require":
{
"php": ">=8.1",
"ext-fileinfo": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"annexare/countries-list": "3.*",
"axisofstevil/stop-words": "1.*",
"defuse/php-encryption": "2.*",
"guzzlehttp/guzzle": "7.*",
"jeremykendall/php-domain-parser": "6.*",
"mustache/mustache": "3.*",
"pimple/pimple": "3.*",
"pocketarc/codeigniter": "3.*",
"ralouphie/getallheaders": "3.*",
"symfony/http-foundation": "6.*",
"symfony/mime": "6.*",
"symfony/string": "6.*",
"symfony/translation-contracts": "3.*",
"vlucas/phpdotenv": "5.*"
},
"require-dev":
{
"phpunit/phpunit": "10.*",
"phpstan/phpstan": "2.*"
},
"scripts":
{
"test": "mkdir -p cache/private cache/public && ./vendor/bin/phpunit",
"analyse": "./vendor/bin/phpstan analyse -c .phpstan/config.neon"
},
"autoload":
{
"psr-4":
{
"Nails\\": "src/",
"Nails\\Common\\": "src/Common/"
}
},
"extra":
{
"nails":
{
"moduleName": "common",
"type": "module",
"namespace": "Nails\\Common\\",
"autoload":
{
"services":
[
"ErrorHandler"
],
"helpers":
[
"app_setting",
"array",
"asset",
"cookie",
"config",
"date",
"debug",
"directory",
"email",
"exception",
"file",
"form",
"form_field",
"html",
"language",
"log",
"logo",
"string",
"text",
"tools",
"typography",
"url"
]
},
"data":
{
"nails/module-cdn":
{
"permitted-image-dimensions":
[
"35x35"
]
}
},
"scripts":
{
"install": "./scripts/install-mime-db.sh"
}
}
}
}