mirror of
https://github.com/nosial/FileServer.git
synced 2025-06-06 13:38:36 +00:00
Some checks failed
Docker CI/CD / build-and-save (push) Has been cancelled
Docker CI/CD / build-and-push (push) Has been cancelled
CI / release (push) Has been cancelled
CI / debug (push) Has been cancelled
CI / release_executable (push) Has been cancelled
CI / debug_executable (push) Has been cancelled
CI / check-phpunit (push) Has been cancelled
CI / check-phpdoc (push) Has been cancelled
CI / generate-phpdoc (push) Has been cancelled
CI / test (push) Has been cancelled
CI / release-documentation (push) Has been cancelled
CI / release-artifacts (push) Has been cancelled
99 lines
No EOL
2.9 KiB
JSON
99 lines
No EOL
2.9 KiB
JSON
{
|
|
"project": {
|
|
"compiler": {
|
|
"extension": "php",
|
|
"minimum_version": "8.2",
|
|
"maximum_version": "8.0"
|
|
},
|
|
"options": {
|
|
"create_symlink": true
|
|
}
|
|
},
|
|
"assembly": {
|
|
"name": "FileServer",
|
|
"package": "net.nosial.fileserver",
|
|
"description": "A simple standard HTTP file upload server",
|
|
"version": "1.0.0",
|
|
"uuid": "8ee504ac-b27f-4f67-9730-ab3904be916c"
|
|
},
|
|
"build": {
|
|
"source_path": "src",
|
|
"default_configuration": "release",
|
|
"main": "main_policy",
|
|
"define_constants": {
|
|
"ASSEMBLY_PACKAGE": "%ASSEMBLY.PACKAGE%",
|
|
"ASSEMBLY_VERSION": "%ASSEMBLY.VERSION%",
|
|
"ASSEMBLY_UID": "%ASSEMBLY.UID%"
|
|
},
|
|
"configurations": [
|
|
{
|
|
"name": "release",
|
|
"build_type": "ncc",
|
|
"output": "build/release/%ASSEMBLY.PACKAGE%.ncc"
|
|
},
|
|
{
|
|
"name": "debug",
|
|
"build_type": "ncc",
|
|
"output": "build/debug/%ASSEMBLY.PACKAGE%.ncc",
|
|
"define_constants": {
|
|
"DEBUG": "1"
|
|
}
|
|
},
|
|
{
|
|
"name": "release_executable",
|
|
"build_type": "executable",
|
|
"output": "build/release/%ASSEMBLY.NAME%",
|
|
"options": {
|
|
"ncc_configuration": "release"
|
|
}
|
|
},
|
|
{
|
|
"name": "debug_executable",
|
|
"build_type": "executable",
|
|
"output": "build/debug/%ASSEMBLY.NAME%",
|
|
"options": {
|
|
"ncc_configuration": "debug"
|
|
},
|
|
"define_constants": {
|
|
"DEBUG": "1"
|
|
}
|
|
}
|
|
],
|
|
"dependencies": [
|
|
{
|
|
"name": "com.symfony.uid",
|
|
"version": "latest",
|
|
"source": "symfony/uid=latest@packagist"
|
|
},
|
|
{
|
|
"name": "net.nosial.configlib",
|
|
"version": "latest",
|
|
"source": "nosial/configlib=latest@github"
|
|
},
|
|
{
|
|
"name": "net.nosial.loglib2",
|
|
"version": "latest",
|
|
"source": "nosial/loglib2=latest@github"
|
|
},
|
|
{
|
|
"name": "net.nosial.optslib",
|
|
"version": "latest",
|
|
"source": "nosial/optslib=latest@github"
|
|
}
|
|
]
|
|
},
|
|
"execution_policies": [
|
|
{
|
|
"name": "main_policy",
|
|
"runner": "php",
|
|
"execute": {
|
|
"working_directory": "%CWD%",
|
|
"silent": false,
|
|
"tty": true,
|
|
"timeout": null,
|
|
"idle_timeout": null,
|
|
"target": "main"
|
|
}
|
|
}
|
|
]
|
|
} |