summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json19
1 files changed, 10 insertions, 9 deletions
diff --git a/composer.json b/composer.json
index d1e8531..bdc5788 100644
--- a/composer.json
+++ b/composer.json
@@ -1,7 +1,7 @@
{
"name": "morris/lessql",
- "description": "LessQL: The agile PHP ORM alternative",
- "keywords": [ "orm", "notorm", "sql", "pdo", "database" ],
+ "description": "LessQL: A lightweight and performant PHP ORM alternative",
+ "keywords": ["orm", "notorm", "sql", "pdo", "database"],
"license": "MIT",
"homepage": "https://github.com/morris/lessql",
"authors": [
@@ -10,19 +10,20 @@
"homepage": "https://morrisbrodersen.de"
}
],
-
"autoload": {
- "psr-0": {
- "": "src"
+ "psr-4": {
+ "LessQL\\": "src/LessQL"
}
},
-
"require": {
"php": ">=5.3.4"
},
-
"require-dev": {
- "phpunit/phpunit": "~4.6",
- "codeclimate/php-test-reporter": "dev-master"
+ "phpunit/phpunit": "~4.6|~5|~6|~7",
+ "friendsofphp/php-cs-fixer": "^2.16"
+ },
+ "scripts": {
+ "test": "vendor/bin/phpunit --bootstrap=tests/sqlite.php --coverage-html=coverage tests",
+ "format": "vendor/bin/php-cs-fixer fix ."
}
}