Skip to content

Commit

Permalink
Run npx prettier . --write
Browse files Browse the repository at this point in the history
  • Loading branch information
reedy committed Jul 10, 2023
1 parent d104f27 commit 214c5ea
Show file tree
Hide file tree
Showing 26 changed files with 13,229 additions and 11,204 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Basically, though, it's your classic [LNMP](https://en.wikipedia.org/wiki/LAMP_%
## Tests

Test coverage is woefully incomplete, but comes in three flavors:

- [`client`](test/client/): Client-side full-stack integration tests, require live DB & server
- [`server`](test/server/): Server-side (PHP) integration tests, require a live database
- [`unit`](test/unit/): Client-side JavaScript unit tests
Expand Down
8 changes: 4 additions & 4 deletions badge/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The Open Sans font is released under the [Open Font License 1.1](OFL.txt).

* Project: https://fonts.google.com/specimen/Open+Sans
* Source: https://github.com/googlefonts/opensans
The Open Sans font is released under the [Open Font License 1.1](OFL.txt).

- Project: https://fonts.google.com/specimen/Open+Sans
- Source: https://github.com/googlefonts/opensans
104 changes: 52 additions & 52 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,56 +1,56 @@
{
"name": "jpatokal/openflights",
"description": "Website for storing flight information, rendering paths on a zoomable world map and calculating statistics, with plenty of free airline, airport and route data",
"type": "project",
"keywords": [
"openflights"
"name": "jpatokal/openflights",
"description": "Website for storing flight information, rendering paths on a zoomable world map and calculating statistics, with plenty of free airline, airport and route data",
"type": "project",
"keywords": [
"openflights"
],
"license": "AGPL-3.0-only",
"support": {
"issues": "https://github.com/jpatokal/openflights/issues",
"source": "https://github.com/jpatokal/openflights"
},
"homepage": "https://openflights.org/",
"require": {
"php": "~7.4.0",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-gettext": "*",
"ext-libxml": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.0.1",
"http-interop/http-factory-guzzle": "^1.0",
"knplabs/github-api": "^3.0",
"rubobaquero/phpquery": "0.9.15"
},
"require-dev": {
"mediawiki/minus-x": "^1.1.1",
"squizlabs/php_codesniffer": "~3.7.2",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpunit/phpunit": "~9.5.28",
"phpunit/phpunit-selenium": "~9.0.1",
"simpletest/simpletest": "^1.1"
},
"scripts": {
"fix": [
"minus-x fix ."
],
"license": "AGPL-3.0-only",
"support": {
"issues": "https://github.com/jpatokal/openflights/issues",
"source": "https://github.com/jpatokal/openflights"
},
"homepage": "https://openflights.org/",
"require": {
"php": "~7.4.0",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-gettext": "*",
"ext-libxml": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.0.1",
"http-interop/http-factory-guzzle": "^1.0",
"knplabs/github-api": "^3.0",
"rubobaquero/phpquery": "0.9.15"
},
"require-dev": {
"mediawiki/minus-x": "^1.1.1",
"squizlabs/php_codesniffer": "~3.7.2",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpunit/phpunit": "~9.5.28",
"phpunit/phpunit-selenium": "~9.0.1",
"simpletest/simpletest": "^1.1"
},
"scripts": {
"fix": [
"minus-x fix ."
],
"lint": "parallel-lint . --exclude vendor",
"phpcs": "phpcs -p -s --cache --encoding=utf-8 --extensions=php --ignore=*vendor/* *",
"phpcbf": "phpcbf",
"test": [
"@lint",
"minus-x check ."
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
"lint": "parallel-lint . --exclude vendor",
"phpcs": "phpcs -p -s --cache --encoding=utf-8 --extensions=php --ignore=*vendor/* *",
"phpcbf": "phpcbf",
"test": [
"@lint",
"minus-x check ."
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}
Loading

0 comments on commit 214c5ea

Please sign in to comment.