federationlib/project.json

90 lines
2.7 KiB
JSON
Raw Normal View History

2023-03-30 15:26:15 -04:00
{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.0",
"maximum_version": "8.2"
},
2023-06-04 14:23:51 -04:00
"options": {
"create_symlink": true
}
2023-03-30 15:26:15 -04:00
},
"assembly": {
"name": "FederationLib",
"package": "net.nosial.federationlib",
2023-06-04 14:23:51 -04:00
"company": "Nosial",
"copyright": "Copyright (c) 2022-2023 Nosial",
"description": "A Standard Federation Database Library written in PHP",
2023-03-30 15:26:15 -04:00
"version": "1.0.0",
"uuid": "2fb017d4-cf2f-11ed-8cee-b7943a7c7304"
},
2023-06-04 14:23:51 -04:00
"execution_policies": [
{
"name": "main",
"runner": "php",
"execute": {
"target": "main",
"working_directory": "%CWD%",
"tty": true
}
}
],
2023-03-30 15:26:15 -04:00
"build": {
"source_path": "src",
"default_configuration": "release",
2023-06-04 14:23:51 -04:00
"main": "main",
"define_constants": {
"version": "%ASSEMBLY.VERSION%"
},
"dependencies": [
{
"name": "net.nosial.configlib",
"version": "latest",
"source_type": "remote",
"source": "nosial/libs.config=latest@n64"
},
{
"name": "net.nosial.optslib",
"version": "latest",
"source_type": "remote",
"source": "nosial/libs.opts=latest@n64"
},
{
"name": "net.nosial.tamerlib",
"version": "latest",
"source_type": "remote",
"source": "nosial/libs.tamer=latest@n64"
},
2023-06-04 14:23:51 -04:00
{
"name": "net.nosial.loglib",
"version": "latest",
"source_type": "remote",
"source": "nosial/libs.log=latest@n64"
},
{
"name": "com.doctrine.dbal",
"version": "latest",
"source_type": "remote",
"source": "doctrine/dbal=latest@composer"
},
{
"name": "com.symfony.uid",
"version": "latest",
"source_type": "remote",
"source": "symfony/uid=latest@composer"
},
{
"name": "com.malios.php_to_ascii_table",
"version": "latest",
"source_type": "remote",
"source": "malios/php-to-ascii-table=latest@composer"
}
],
2023-03-30 15:26:15 -04:00
"configurations": [
{
"name": "release",
"output_path": "build/release"
}
]
}
}