Skip to content

Commit adb30bf

Browse files
committed
Update to laravel 5.x
1 parent 448b995 commit adb30bf

File tree

2 files changed

+32
-27
lines changed

2 files changed

+32
-27
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
- [Laravel Asana on Packagist](https://packagist.org/packages/torann/laravel-asana)
1010
- [Laravel Asana on GitHub](https://github.com/torann/laravel-asana)
11-
- [Laravel 4 Installation](https://github.com/Torann/laravel-asana/tree/0.1.1)
11+
- [Laravel 4 Installation](https://github.com/Torann/laravel-asana/tree/0.1.2)
1212

1313
To get the latest version of Laravel Asana simply require it in your `composer.json` file.
1414

@@ -89,6 +89,12 @@ Asana::createTask(array(
8989
));
9090
```
9191

92+
#### Delete a task
93+
94+
```php
95+
Asana::deleteTask($task_id);
96+
```
97+
9298
#### Adding task to project
9399

94100
```php

composer.json

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
11
{
2-
"name": "torann/laravel-asana",
3-
"description": "Asna API wrapper for Laravel",
4-
"keywords": ["laravel", "asana"],
5-
"license": "BSD 2-Clause",
6-
"authors": [
7-
{
8-
"name": "Daniel Stainback",
9-
"email": "[email protected]"
10-
}
11-
],
12-
"require": {
13-
"php": ">=5.4.0",
14-
"illuminate/support": "~4.2",
15-
"illuminate/database": "~4.0"
16-
},
17-
"autoload": {
18-
"psr-0": {
19-
"Torann\\LaravelAsana": "src/"
20-
}
21-
},
22-
"extra": {
23-
"branch-alias": {
24-
"dev-master": "0.1-dev"
25-
}
26-
},
27-
"minimum-stability": "stable"
2+
"name": "torann/laravel-asana",
3+
"description": "Asna API wrapper for Laravel",
4+
"keywords": ["laravel", "asana", "laravel 5", "laravel 4"],
5+
"license": "BSD 2-Clause",
6+
"authors": [
7+
{
8+
"name": "Daniel Stainback",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"php": ">=5.4.0",
14+
"illuminate/support": "~5.0",
15+
"illuminate/database": "~5.0"
16+
},
17+
"autoload": {
18+
"psr-4": {
19+
"Torann\\LaravelAsana\\": "src/Torann/LaravelAsana"
20+
}
21+
},
22+
"extra": {
23+
"branch-alias": {
24+
"dev-master": "0.2-dev"
25+
}
26+
}
2827
}

0 commit comments

Comments
 (0)