-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.78 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
65
66
67
{
"name": "unolia/unolia-cli",
"description": "Cli tool to interact with the Unolia API",
"type": "project",
"keywords": ["unolia", "dns", "console", "cli"],
"homepage": "https://unolia.com",
"license": "MIT",
"support": {
"issues": "https://github.com/unolia/unolia-cli/issues",
"source": "https://github.com/unolia/unolia-cli"
},
"authors": [
{
"name": "Eser DENIZ",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"laravel-zero/phar-updater": "^1.3",
"laravel/prompts": "^0.1.20",
"react/dns": "^1.12",
"saloonphp/pagination-plugin": "^2.0",
"saloonphp/saloon": "^3.0"
},
"require-dev": {
"laravel-zero/framework": "^11.0",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.15",
"mockery/mockery": "^1.6",
"nunomaduro/termwind": "^2.0.1",
"pestphp/pest": "^2.22",
"saloonphp/laravel-plugin": "^3.0"
},
"autoload": {
"psr-4": {
"Unolia\\UnoliaCLI\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/pest -p",
"pint": "./vendor/bin/pint",
"phpstan": "./vendor/bin/phpstan",
"build": "@php unolia app:build",
"qa": [
"@composer pint",
"@composer phpstan",
"@composer test"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": ["builds/unolia"]
}