-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.66 KB
/
composer.json
File metadata and controls
59 lines (59 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
{
"name": "extendy/smartyurl",
"description": "SmartyURL",
"type": "project",
"version": "1.0.0-dev",
"require": {
"php": "^8.1",
"codeigniter4/framework": "^4.6",
"codeigniter4/settings": "^2.1",
"codeigniter4/shield": "^1.0",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-gettext": "*",
"ext-gmp": "*",
"laminas/laminas-escaper": "^2.9",
"psr/log": "^3.0",
"ip2location/ip2location-php": "^9.7",
"mobiledetect/mobiledetectlib": "4.8.x-dev",
"sokil/php-isocodes": "^4.2",
"sokil/php-isocodes-db-i18n": "^4.0",
"chillerlan/php-qrcode": "^5.0",
"codeigniter4/translations": "^4.6"
},
"require-dev": {
"fakerphp/faker": "^1.9",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^11.4",
"codeigniter/coding-standard": "^1.7",
"phpstan/phpstan": "^2.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Extendy\\Smartyurl\\": "src/"
}
},
"support": {
"issues": "https://github.com/Extendy/SmartyURL/issues",
"source": "https://github.com/Extendy/SmartyURL"
},
"scripts": {
"test": "phpunit",
"cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff",
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff"
},
"authors": [
{
"name": "Extendy Team",
"homepage": "http://extendy.net",
"role": "Developer"
},
{
"name": "Mohammed AlShannaq",
"homepage": "http://ms.per.jo",
"role": "Developer"
}
]
}