-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
81 lines (81 loc) · 3.06 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "moderntribe/square1-global-docker",
"description": "SquareOne Docker Local Environment.",
"keywords": ["squareone", "square one", "modern tribe", "docker", "local environment"],
"homepage": "https://tri.be/",
"type": "project",
"license": "GPL-2.0-only",
"support": {
"issues": "https://github.com/moderntribe/square1-global-docker/issues",
"source": "https://github.com/moderntribe/square1-global-docker"
},
"authors": [
{
"name": "Justin Frydman"
}
],
"require": {
"php": "^7.3|^8.0|^8.1",
"ext-json": "*",
"ext-openssl": "*",
"alecrabbit/php-cli-snake": "^0.6.0",
"composer/semver": "^3.0",
"guzzlehttp/guzzle": "^6.5.5|^7.0",
"illuminate/http": "^8.0",
"illuminate/log": "^8.75",
"illuminate/validation": "^8.0",
"laminas/laminas-text": "^2.7",
"laravel-zero/framework": "^8.0",
"m1/env": "^2.2",
"pragmarx/yaml": "^1.2",
"spatie/data-transfer-object": "^1.14",
"symfony/config": "^5.0",
"titasgailius/terminal": "^1.0",
"tmarois/filebase": "^1.0"
},
"require-dev": {
"bamarni/symfony-console-autocomplete": "^1.3",
"fzaninotto/faker": "^1.4",
"jaschilz/php-coverage-badger": "^2.0",
"mockery/mockery": "^1.4",
"php-mock/php-mock-mockery": "^1.3",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.3"
}
},
"scripts": {
"build": [
"composer dump-autoload --no-dev -a",
"./so --ansi app:build so.phar < /dev/tty",
"composer dump-autoload",
"@autocomplete"
],
"autocomplete": "mv -fn ./builds/so.phar ./builds/so && vendor/bin/symfony-autocomplete --shell=bash ./builds/so > squareone.autocompletion && vendor/bin/symfony-autocomplete --shell=fish ./builds/so > squareone.autocompletion.fish && vendor/bin/symfony-autocomplete --shell=zsh ./builds/so > squareone.autocompletion.zsh && mv -fn ./builds/so ./builds/so.phar",
"coverage-tests": "@php -dpcov.enabled=1 vendor/bin/phpunit --configuration=phpunit.xml.dist --coverage-text",
"coverage-text": "@php -dpcov.enabled=1 vendor/bin/phpunit --configuration=phpunit.xml.dist --coverage-text < /dev/tty",
"coverage-html": "@php -dpcov.enabled=1 vendor/bin/phpunit --configuration=phpunit.xml.dist --coverage-html coverage < /dev/tty",
"badge": [
"@php -dpcov.enabled=1 vendor/bin/phpunit --configuration=phpunit.xml.dist --coverage-clover=coverage.xml < /dev/tty",
"vendor/bin/php-coverage-badger ./coverage.xml badges/coverage.svg"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["so"]
}