-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.62 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.62 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
{
"name": "pew-pew/map",
"license": "MIT",
"description": "Map loader and entities component",
"type": "library",
"require": {
"php": "^8.3",
"ext-dom": "*",
"ext-json": "*",
"phplrt/source": "^3.6",
"phplrt/source-contracts": "^3.6"
},
"autoload": {
"psr-4": {
"PewPew\\Map\\": "src"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "^5.4|^6.0|^7.0",
"vimeo/psalm": "^5.21"
},
"autoload-dev": {
"psr-4": {
"PewPew\\Map\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-main": "1.0.x-dev"
}
},
"config": {
"sort-packages": true,
"platform-check": true,
"bin-compat": "full",
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"scripts": {
"test": ["@test:unit", "@test:functional"],
"test:unit": "phpunit --testdox",
"test:functional": "phpunit --testdox --testsuite=functional",
"linter": "@linter:check",
"linter:check": "psalm --no-cache",
"linter:fix": "psalm --no-cache --alter",
"phpcs": "@phpcs:check",
"phpcs:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run --verbose --diff",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff"
},
"minimum-stability": "dev",
"prefer-stable": true
}