-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.36 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.36 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ymirapp/cli",
"description": "Ymir command-line tool",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Carl Alexander",
"email": "support@ymirapp.com",
"homepage": "https://ymirapp.com"
}
],
"bin": [
"ymir"
],
"require": {
"php": ">=7.2.5",
"ext-json": "*",
"ext-pdo": "*",
"ext-zip": "*",
"ext-zlib": "*",
"guzzlehttp/guzzle": "^7.10",
"ifsnop/mysqldump-php": "^2.12",
"illuminate/collections": "^8.76.2|^9.0|^10.0|^11.0|^12.0|^13.0",
"illuminate/contracts": "^8.68.0|^9.0|^10.0|^11.0|^12.0|^13.0",
"league/flysystem": "^2.1.1|^3.0",
"league/flysystem-ftp": "^2.0|^3.0",
"league/flysystem-sftp-v3": "^2.0|^3.0",
"nesbot/carbon": "^2.72.6|^3.8.4",
"paragonie/random_compat": "^2.0",
"phpseclib/phpseclib": "^3.0.36",
"symfony/config": "^5.4|^6.0",
"symfony/console": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0|^7.0|^8.0",
"symfony/event-dispatcher": "^5.4|^6.0|^7.0|^8.0",
"symfony/filesystem": "^5.4|^6.0|^7.0|^8.0",
"symfony/finder": "^5.4.3|^6.0.3|^7.0|^8.0",
"symfony/polyfill-php80": "^1.27",
"symfony/process": "^5.4.46|^6.4.14|^7.0|^8.0",
"symfony/yaml": "^5.4|^6.0|^7.0|^8.0",
"ymirapp/ymir-sdk-php": "^1.3.0"
},
"require-dev": {
"fakerphp/faker": "^1.17",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.6.12",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.6.31",
"rector/rector": "^2.3"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Ymir\\Cli\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ymir\\Cli\\Tests\\": "tests"
}
},
"scripts": {
"php-cs-fixer": "php-cs-fixer fix --dry-run --allow-risky=yes",
"php-cs-fixer:fix": "php-cs-fixer fix --allow-risky=yes",
"phpstan": "phpstan analyze --ansi",
"rector": "rector --dry-run",
"rector:fix": "rector",
"tests:integration": "phpunit --testsuite integration",
"tests:unit": "phpunit --testsuite unit"
}
}