-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
61 lines (61 loc) · 1.36 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": "st-universe/planet-generator",
"description": "ST-Universe planet surface generator",
"license": "MIT",
"autoload": {
"psr-4": {
"Stu\\PlanetGenerator\\": "src/PlanetGenerator"
}
},
"autoload-dev": {
"psr-4": {
"Stu\\": "tests/"
}
},
"require": {
"php": "^8.2",
"jetbrains/phpstorm-stubs": "^2022.3"
},
"require-dev": {
"phpunit/phpunit": "^11",
"mockery/mockery": "^1.1",
"st-universe/assets": "dev-master",
"mnsami/composer-custom-directory-installer": "^2",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-mockery": "^2.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/st-universe/assets.git"
}
],
"config": {
"allow-plugins": {
"mnsami/composer-custom-directory-installer": true
}
},
"extra": {
"installer-paths": {
"./example/assets": [
"st-universe/assets"
]
}
},
"scripts": {
"tests": "@php vendor/bin/phpunit tests",
"stan": "phpstan",
"qa": [
"@composer tests",
"@composer stan"
],
"gen:assets": [
"@php example/assets/generator/building_generator/gen.php",
"@php example/assets/generator/field_generator/generator.php"
]
},
"scripts-descriptions": {
"qa": "Executes alle qa related action",
"gen:assets": "Generates asset images"
}
}