-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.61 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"name": "aschm/maintenance",
"type": "library",
"description": "Admin dashboard maintenance mode handling for CodeIgniter 4.",
"keywords": [
"codeigniter",
"codeigniter4",
"maintenance"
],
"homepage": "https://github.com/sfadschm/maintenance",
"license": "MIT",
"authors": [
{
"name": "Alexander Schmitz",
"email": "schmitz.alex@gmx.net",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^8.0",
"codeigniter4/authentication-implementation": "^1.0"
},
"require-dev": {
"codeigniter/coding-standard": "^1.1",
"codeigniter4/codeigniter4": "^4.1",
"friendsofphp/php-cs-fixer": "^3.1",
"nexusphp/cs-config": "^3.3",
"phpstan/phpstan": "0.12.91",
"rector/rector": "0.11.37",
"phpunit/phpunit": "^9.1",
"symplify/package-builder": "^9.3",
"myth/auth": "dev-develop",
"sebastian/phpcpd": "^6.0"
},
"autoload": {
"psr-4": {
"ASchm\\Maintenance\\": "src/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/codeigniter4/CodeIgniter4"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyze": [
"./vendor/bin/phpstan analyze --verbose",
"rm -r build"
],
"rect": "./vendor/bin/rector process --clear-cache",
"style": "./vendor/bin/php-cs-fixer fix --ansi --verbose --using-cache=no",
"copy": "./vendor/bin/phpcpd --fuzzy src"
}
}