-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
64 lines (64 loc) · 1.86 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
{
"name": "linc/nitro-porter",
"type": "project",
"description": "The only multi-platform community migration tool. Free your forum!",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Lincoln Russell",
"email": "[email protected]"
},
{
"name": "Todd Burry",
"email": "[email protected]"
},
{
"name": "Alexandre Chouinard",
"email": "[email protected]"
}
],
"scripts": {
"lint": "vendor/bin/phpcs --standard=PSR12 ./src",
"delint": "vendor/bin/phpcbf --standard=PSR12 ./src",
"test": "vendor/bin/phpunit --no-coverage --no-extensions --colors=always",
"build": "cd build; ../vendor/bin/phing; cd ..",
"phinx": "vendor/bin/phinx",
"seed": "vendor/bin/phinx seed:run",
"stan": "vendor/bin/phpstan analyse --memory-limit 1G",
"changelog": "php vendor/bin/conventional-changelog"
},
"bin": [
"bin/porter"
],
"require": {
"php": ">=8.0",
"ext-gd": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-zlib": "*",
"illuminate/database": "^8.0",
"monolog/monolog": "^2",
"adhocore/cli": "^1",
"s9e/text-formatter": "2.15.*",
"nadar/quill-delta-parser": "^2"
},
"require-dev": {
"phing/phing": "^2.0",
"robmorgan/phinx": "^0.12",
"fakerphp/faker": "^1.16",
"squizlabs/php_codesniffer": "^3",
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1",
"marcocesarato/php-conventional-changelog": "^1"
},
"autoload": {
"psr-4": {
"Porter\\": "src/",
"PorterTest\\": "tests/"
},
"files": [
"src/Functions/core.php",
"src/Functions/filter.php"
]
}
}