Skip to content
Snippets Groups Projects
Commit 15a56a3c authored by Stein Magne Bjorklund's avatar Stein Magne Bjorklund
Browse files

Add basic composer config.

- Allow us to use namespaces
- Allow PSR 4 autoloading
- Add libraries and classes through dev. and prod. staging.
parent 30478625
No related branches found
No related tags found
1 merge request!6Add basic composer config.
vendor
.phpunit.cache/
settings.inc.php settings.inc.php
*~
components components
*~
cache/* cache/*
meta/* meta/*
meta/db.sqlite meta/db.sqlite
......
{
"name": "uib/loadspeakr",
"description": "LODSPeaKr is a framework for creating Linked Data applications.",
"license": "Apache License",
"authors": [
{
"name": "Alvaro Graves",
"email": "alvaro@graves.cl"
}
],
"require": {
"semsol/arc2": "^2",
"symfony/http-foundation": "^5.3"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.4"
}
},
"autoload": {
"psr-4": {
"uib\\ub\\loadspeakr\\": "classes/"
}
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phan/phan": "4.x",
"phpstan/phpstan": "^0.12.83",
"phpunit/phpunit": "^9"
}
}
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment