-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (73 loc) · 2.09 KB
/
composer.json
File metadata and controls
74 lines (73 loc) · 2.09 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
{
"name": "oshkoshbagoshh/tfn-ludgwig",
"description": "TFN Music Platform - Alpha version. Kantent Management collab",
"type": "project",
"require": {
"php": "^8.2",
"vlucas/phpdotenv": "^5.5",
"james-heinrich/getid3": "^1.0",
"botman/botman": "^2.0",
"guzzlehttp/guzzle": "^7.0",
"league/climate": "^3.6",
"league/color-extractor": "^0.3",
"league/commonmark": "^2.3",
"league/config": "^1.2",
"league/csv": "^9.7",
"league/event": "^2.3",
"league/flysystem": "^3.0",
"league/glide": "^2.3",
"league/omnipay": "^3.0",
"league/route": "^4.1",
"league/uri": "^6.6",
"monolog/monolog": "^3.0",
"phpmailer/phpmailer": "@stable",
"ext-pdo": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^10.0",
"fakerphp/faker": "^1.21",
"league/factory-muffin": "^3.0",
"league/factory-muffin-faker": "^2.3",
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.15",
"squizlabs/php_codesniffer": "^3.7",
"php-debugbar/php-debugbar": "^1.18"
},
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "AJ Javadi",
"email": "amirjavadi25@gmail.com"
}
],
"scripts": {
"test": "phpunit",
"serve": "php -S localhost:8000 -t public",
"analyse": "phpstan analyse src tests --level=max",
"cs-fix": "php-cs-fixer fix",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"phpcs": "phpcs src tests",
"phpcbf": "phpcbf src tests"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}