-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
129 lines (129 loc) · 4.12 KB
/
composer.json
File metadata and controls
129 lines (129 loc) · 4.12 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"require": {
"php": "^8.1",
"ext-apcu": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-imagick": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-sodium": "*",
"ext-zip": "*",
"adshares/ads-client": "^1",
"adshares/php-ecrecover": "dev-master",
"aws/aws-sdk-php": "~3.0",
"doctrine/collections": "^1.0.0",
"doctrine/dbal": "^3.3.7",
"fruitcake/laravel-cors": "^3.0",
"guzzlehttp/guzzle": "^7.4.0",
"james-heinrich/getid3": "^1.9",
"laravel/framework": "^9.0",
"laravel/passport": "^11.3",
"laravel/tinker": "^2.0",
"mikehaertl/phpwkhtmltopdf": "^2.5",
"paragonie/sodium_compat": "^1.8",
"php-ffmpeg/php-ffmpeg": "^1.1",
"phpoffice/phpspreadsheet": "^1.6",
"ramsey/uuid": "^4.2.2",
"spatie/fork": "^1.0.0",
"spatie/laravel-activitylog": "^4.6",
"symfony/intl": "^v6.4.0",
"symfony/lock": "^v6.4.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.4",
"dealerdirect/phpcodesniffer-composer-installer": "^v1.0.0",
"fakerphp/faker": "^1.17",
"filp/whoops": "^2.0",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^6.1",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcompatibility/php-compatibility": "dev-develop",
"phpunit/phpunit": "^9.0",
"slevomat/coding-standard": "^8.11.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"files": [
"vendor/adshares/php-ecrecover/ecrecover_helper.php"
],
"psr-4": {
"Adshares\\Lib\\": "lib/",
"Adshares\\Adserver\\": "app/",
"Adshares\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Adshares\\Adserver\\Tests\\": "tests/app",
"Adshares\\Lib\\Tests\\": "tests/lib",
"Adshares\\Mock\\": "tests/mock",
"Adshares\\Tests\\": "tests/src",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
"qa-check": [
"parallel-lint --no-colors --blame --exclude vendor --exclude bin .",
"phpcs -s"
],
"test": [
"phpunit"
],
"test-coverage": [
"Composer\\Config::disableProcessTimeout",
"XDEBUG_MODE=coverage phpunit --coverage-text"
],
"test-ci": [
"Composer\\Config::disableProcessTimeout",
"@test-coverage --coverage-clover ./storage/phpunit/coverage.xml --log-junit ./storage/phpunit/logfile.xml"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"/bin/bash -c '(source .env && if [ -f \".env.local\" ]; then source .env.local; fi && php -S ${APP_HOST:-localhost}:${APP_PORT:-8010} -t public dev-router.php)'"
],
"post-root-package-install": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"repositories": {
"adshares-ads-php-client": {
"type":"git",
"url": "https://github.com/adshares/ads-php-client.git"
},
"adshares-fork": {
"type":"git",
"url": "https://github.com/adshares/fork.git"
},
"adshares-php-ecrecover": {
"type":"git",
"url": "https://github.com/adshares/php-ecrecover.git"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}