-
-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.08 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.08 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
{
"description": "The CodeIgniter framework",
"name": "codeigniter/framework",
"type": "project",
"homepage": "https://codeigniter.com",
"license": "MIT",
"support": {
"forum": "http://forum.codeigniter.com/",
"wiki": "https://github.com/bcit-ci/CodeIgniter/wiki",
"irc": "irc://irc.freenode.net/codeigniter",
"source": "https://github.com/bcit-ci/CodeIgniter"
},
"require": {
"php": "7.4.33",
"elasticsearch/elasticsearch": "~6.7"
},
"suggest": {
"paragonie/random_compat": "Provides better randomness in PHP 5.x"
},
"require-dev": {
"mikey179/vfsstream": "1.6.*",
"phpstan/phpstan": "^1.10",
"vimeo/psalm": "^5.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpmd/phpmd": "^2.14"
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff --config=../.php-cs-fixer.php",
"cs:fix": "php-cs-fixer fix --config=../.php-cs-fixer.php",
"phpstan": "phpstan analyse -c ../.phpstan.neon --memory-limit=512M",
"psalm": "psalm --config=../psalm.xml --output-format=compact",
"phpmd": "phpmd . text ../phpmd.xml --exclude libraries,third_party,vendor,cache,logs"
}
}