1
0
Fork 0
mirror of synced 2024-06-14 00:34:51 +12:00

feat: remove unused psalm

This commit is contained in:
Torsten Dittmann 2022-06-01 16:39:12 +02:00
parent 958c891039
commit 426e7cb77b
5 changed files with 8 additions and 1298 deletions

View file

@ -405,12 +405,6 @@ Coding Standards:
./vendor/bin/phpcs --standard=PSR12 <your file path>
```
Static Code Analysis:
```bash
docker-compose exec appwrite /usr/src/code/vendor/bin/psalm
```
## Tutorials
From time to time, our team will add tutorials that will help contributors find their way in the Appwrite source code. Below is a list of currently available tutorials:

View file

@ -75,8 +75,7 @@
"appwrite/sdk-generator": "0.18.8",
"phpunit/phpunit": "9.5.20",
"swoole/ide-helper": "4.8.9",
"textalk/websocket": "1.5.7",
"vimeo/psalm": "4.13.1"
"textalk/websocket": "1.5.7"
},
"provide": {
"ext-phpiredis": "*"

1281
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -101,7 +101,6 @@ services:
- appwrite-certificates:/storage/certificates:rw
- appwrite-functions:/storage/functions:rw
- ./phpunit.xml:/usr/src/code/phpunit.xml
- ./psalm.xml:/usr/src/code/psalm.xml
- ./tests:/usr/src/code/tests
- ./app:/usr/src/code/app
# - ./vendor:/usr/src/code/vendor

View file

@ -1,15 +0,0 @@
<?xml version="1.0"?>
<psalm
errorLevel="3"
resolveFromConfigFile="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
>
<projectFiles>
<directory name="src" />
<ignoreFiles>
<directory name="vendor" />
</ignoreFiles>
</projectFiles>
</psalm>