-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.94 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.94 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
{
"name": "cybersecdef/sat-trackr-live",
"description": "A public, read-only, mobile-friendly 3D web app visualizing everything humans have put into Earth orbit.",
"type": "project",
"license": "AGPL-3.0-or-later",
"homepage": "https://sat.trackr.live",
"support": {
"source": "https://github.com/CyberSecDef/sat.trackr.live",
"issues": "https://github.com/CyberSecDef/sat.trackr.live/issues"
},
"require": {
"php": "^8.4",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"guzzlehttp/guzzle": "^7.8",
"illuminate/console": "^11.0",
"illuminate/database": "^11.0",
"illuminate/events": "^11.0",
"monolog/monolog": "^3.5",
"php-di/php-di": "^7.0",
"slim/psr7": "^1.6",
"slim/slim": "^4.13",
"vlucas/phpdotenv": "^5.6",
"zircote/swagger-php": "^6.1"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"friendsofphp/php-cs-fixer": "^3.50",
"phpstan/phpstan": "^1.11"
},
"autoload": {
"psr-4": {
"SatTrackr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SatTrackr\\Tests\\": "tests/Php/"
}
},
"scripts": {
"serve": "php -S 0.0.0.0:8000 -t public/ public/index.php",
"migrate": "php bin/console migrate",
"rollback": "php bin/console migrate:rollback",
"ingest:celestrak": "php bin/console ingest:celestrak",
"lint": "php-cs-fixer fix --dry-run --diff",
"lint:fix": "php-cs-fixer fix",
"analyze": "phpstan analyse --memory-limit=256M",
"test": "phpunit"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "stable",
"prefer-stable": true
}