-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.49 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name" : "thegamepanel/engine",
"type" : "library",
"require" : {
"php" : "^8.5",
"ext-pdo" : "*",
"nesbot/carbon" : "^3.1",
"justinrainbow/json-schema": "^6.7",
"composer-plugin-api" : "^2.0",
"vlucas/phpdotenv" : "^5.6",
"filp/whoops" : "^2.18",
"nikic/fast-route" : "^1.3",
"monolog/monolog" : "^3.10",
"symfony/uid" : "^8.0",
"composer/composer" : "^2.0"
},
"require-dev" : {
"phpunit/phpunit" : "^13.0",
"phpstan/phpstan" : "^2.1",
"readalizer/readalizer" : "^1.0",
"jetbrains/phpstorm-attributes": "^1.2",
"phpstan/phpstan-phpunit" : "^2.0",
"infection/infection" : "^0.32.6",
"friendsofphp/php-cs-fixer" : "^3.94",
"brianium/paratest" : "^7.22"
},
"autoload" : {
"psr-4": {
"Engine\\" : "src/",
"Modules\\": "modules/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config" : {
"allow-plugins": {
"phpstan/extension-installer" : true,
"infection/extension-installer": true
}
},
"scripts" : {
"test" : "@php vendor/bin/paratest",
"mutation": "@php vendor/bin/infection --threads=max --no-progress",
"analyze" : "@php vendor/bin/phpstan analyse src --memory-limit=2G",
"tidy" : "@php vendor/bin/php-cs-fixer fix"
}
}