-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
61 lines (61 loc) · 1.46 KB
/
composer.json
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
{
"name": "jasonw4331/vanillaentityai",
"description": "A non-customizable plugin to add vanilla entities with AI to PocketMine servers",
"type": "library",
"license": "lgpl-3.0-or-later",
"authors": [{
"name": "jasonw4331",
"email": "[email protected]"
}],
"minimum-stability": "beta",
"prefer-stable": true,
"autoload": {
"psr-4": {
"jasonw4331\\VanillaEntityAI\\": "/src"
}
},
"repositories": [{
"type": "package",
"package": {
"name": "salmonde/pathfinding",
"version": "0.1.0",
"source": {
"url": "https://github.com/SalmonDE/Pathfinding.git",
"type": "git",
"reference": "master"
},
"autoload": {
"psr-4": {
"SalmonDE\\Pathfinding\\": "src/"
}
},
"extra": {
"virion": {
"spec": "3.0",
"namespace-root": "SalmonDE/Pathfinding"
}
}
}
}],
"require": {
"cortexpe/commando": "dev-master",
"salmonde/pathfinding": "*"
},
"require-dev": {
"phpstan/phpstan": "^1.4.6",
"pocketmine/pocketmine-mp": "^4.0.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/extension-installer": "^1.0",
"symfony/filesystem": "^5.4",
"friendsofphp/php-cs-fixer": "^3.11"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"make-baseline": "@php ./vendor/bin/phpstan analyze -b phpstan-baseline.php -c phpstan.neon.dist --allow-empty-baseline",
"fix-codestyle": "@php ./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --verbose --diff"
}
}