PSR-4, Composer and PHPUnit autoloading
This commit is contained in:
parent
3161c8e661
commit
e35e2f3e0f
5 changed files with 38 additions and 5 deletions
20
composer.json
Normal file
20
composer.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"name": "joshtronic/php-sort",
|
||||
"type": "library",
|
||||
"license": "MIT",
|
||||
"require": {
|
||||
"platform": {
|
||||
"php": ">=5.3"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Pickles\\": "src"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Pickles\\Tests\\": "tests"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue