-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
78 lines (78 loc) · 2.36 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
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
{
"name": "lewe/teamcalneo",
"type": "project",
"keywords": [ "lewe", "teamcal", "teamcal neo", "team" ,"event", "calendar" ],
"description": "The day-based team event calendar",
"homepage": "https://www.lewe.com",
"license": "MIT",
"authors": [
{
"name": "George Lewe",
"email": "george@lewe.com",
"homepage": "https://www.lewe.com",
"role": "Developer"
}
],
"support": {
"email": "support@lewe.com",
"docs": "https://lewe.gitbook.io/teamcal-neo",
"issues": "https://georgelewe.atlassian.net/servicedesk/customer/portal/5",
"source": "https://github.com/codeigniter4/CodeIgniter4"
},
"require": {
"php": "^8.1 || ^8.2",
"ext-ctype": "*",
"ext-curl": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"matthiasmullie/minify": "^1.3",
"ext-ldap": "*"
},
"require-dev": {
"matthiasmullie/minify": "^1.3"
},
"suggest": {
"ext-curl": "If you use CURLRequest class",
"ext-imagick": "If you use Image class ImageMagickHandler",
"ext-gd": "If you use Image class GDHandler",
"ext-exif": "If you run Image class tests",
"ext-simplexml": "If you format XML",
"ext-mysqli": "If you use MySQL",
"ext-oci8": "If you use Oracle Database",
"ext-pgsql": "If you use PostgreSQL",
"ext-sqlsrv": "If you use SQL Server",
"ext-sqlite3": "If you use SQLite3",
"ext-memcache": "If you use Cache class MemcachedHandler with Memcache",
"ext-memcached": "If you use Cache class MemcachedHandler with Memcached",
"ext-redis": "If you use Cache class RedisHandler",
"ext-dom": "If you use TestResponse",
"ext-libxml": "If you use TestResponse",
"ext-xdebug": "If you use CIUnitTestCase::assertHeaderEmitted()",
"ext-fileinfo": "Improves mime type detection for files",
"ext-readline": "Improves CLI::input() usability"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
},
"scripts": {
"test": "phpunit",
"lint:css": [
"stylelint --quiet-deprecation-warnings --fix \"src/css/teamcalneo.css\""
],
"build": [
"composer run lint:css",
"php minify.php"
],
"build:prod": [
"composer run lint:css",
"php minify.php",
"composer install --no-dev --optimize-autoloader"
]
}
}